Change Text for Search Bar

Home Forums Calendar Products Events Calendar PRO Change Text for Search Bar

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #548366
    persyst
    Participant

    Currently the Location field header on the search bar reads “Near” and the instruction text in the box says “Location”. How can I modify the header to say “Location” and the instruction text to say “Enter Nearest City,State”?

    Thanks,
    Stefan

    #550974
    Barry
    Member

    Hi Stefan,

    A snippet like this one – which you could add to your theme’s functions.php file – ought to do the trick:

    add_filter( 'tribe-events-bar-filters', 'modify_location_filter', 100 );
    
    function modify_location_filter( array $filters ) {
    	if ( ! isset( $filters['tribe-bar-geoloc'] ) ) return $filters;
    	$filters['tribe-bar-geoloc']['caption'] = 'Location';
    	$filters['tribe-bar-geoloc']['html'] = str_replace( 'Location', 'Enter Nearest City,State', $filters['tribe-bar-geoloc']['html'] );
    	return $filters;
    }

    Does that help here?

    #587789
    persyst
    Participant

    Thanks Barry, that worked!

    #587896
    Barry
    Member

    Fantastic 🙂

    I’ll go ahead and close this thread in that case. If we can help with anything else, though, please don’t hesitate to create new threads as needed and one of the team will be only too happy to help.

    That apart, if you have a moment and wished to leave a review on our plugin review page we’d love to hear from you – thanks again!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change Text for Search Bar’ is closed to new replies.