Edit Tribe Events Bar

Home Forums Calendar Products Events Calendar PRO Edit Tribe Events Bar

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1115534
    siriusly
    Participant

    Hi — I’ve searched forums & knowledgebase, but am not finding the answer to this… Where can I change the text for the Tribe Events Bar (“Events In” ; “Date” ; “Search” ; and the submit button “Find Events”)? Thank you!

    #1115596
    Nico
    Member

    Hi there @siriusly,

    Thanks for reaching out! I’ll help you with this…

    You can change those labels using the snippet in this knowledge base article: Change the wording of any bit of text or string. Also there a super handy plugin called Say What? that provides a GUI to do this.

    Please let me know if you can make it work or if you still need help,
    Best,
    Nico

    #1115628
    siriusly
    Participant

    Thanks! So, I’m _close_ to what I want using the functions.php snippets… (actually easier than the Say What plugin IMHO).

    I’d like the “Search” label and the placeholder text to be different, so the label says “Search for” and the placeholder text says “Enter text” … how would I accomplish that?

    #1116345
    Nico
    Member

    Hey glad to hear we are close to nail this!

    As both texts use the same translation you’ll need to add an extra snippet to change one of them:


    /**
    * Modify tribe bar search input label
    */
    function tribe_modify_bar_search_placeholder ( $filters ) {

    if ( isset ( $filters['tribe-bar-search'] ) ) {
    $filters['tribe-bar-search']['caption'] = 'Another string';
    }

    return $filters;
    }

    add_filter('tribe-events-bar-filters', 'tribe_modify_bar_search_placeholder', 10 , 1 );

    Please let me know if this works as expected now,
    Best,
    Nico

    #1117820
    siriusly
    Participant

    Works perfectly! Thank you!

    #1118071
    Nico
    Member

    Thanks for the heads-up! I’m really glad to hear 🙂

    I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.

    Best,
    Nico

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Edit Tribe Events Bar’ is closed to new replies.