Change Search Words

Home Forums Calendar Products Community Events Change Search Words

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1088327
    dcantato
    Participant

    Hi,

    Where can I find the file to change the words used for the map view search? Having the words Search before location keeps jumping out to people as where to type the location they are looking for before they get to the obvious next line.

    #1088569
    Nico
    Member

    Hi Dario,

    Thanks for reaching out to us ๐Ÿ™‚

    Use the following snippet to change the label and placeholder of the search field in the events bar. Just paste it into your theme (or child theme) functions.php file, and change the text to the appropriate one:


    /*
    * Change the label and placeholder texts in Events Search Bar
    */
    add_filter( 'tribe-events-bar-filters', 'modify_searchbar_label', 100 );

    function modify_searchbar_label( array $filters ) {

    if ( ! isset( $filters['tribe-bar-search'] ) ) return $filters;
    $filters['tribe-bar-search']['caption'] = 'Search Cap';
    $filters['tribe-bar-search']['html'] = str_replace( 'Search', 'Search Desc', $filters['tribe-bar-search']['html'] );

    return $filters;
    }

    Please give it a try and let me know if it works for you,
    Best,
    Nico

    #1088618
    dcantato
    Participant

    That works great!

    Thanks

    #1088656
    Nico
    Member

    Glad to hear. Thanks for confirming ๐Ÿ™‚

    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 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change Search Words’ is closed to new replies.