Search by City and country

Home Forums Calendar Products Events Calendar PRO Search by City and country

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #969515
    Shah
    Participant

    Hi
    Currently search bar shows says: DATE SEARCH NEAR LOCATION
    I want to change “NEAR LOCATION” TO “CITY AND COUNTRY” (the title)
    When I try to search for an event is Seattle (or near Seattle) it does a good job. But if I write Seattle, USA or Seattle, France. It shows the same results. So currently we have search by city but not by country. I bought Filter Bar but it did not serve the purpose. Is there any way to do that? You might have noticed how important search by country / city is for my portal? I would prefer doing t without Filter BAR

    #969617
    Nico
    Member

    Hi Shah,

    Thanks for reaching out! Luckily this is possible and quite simple 🙂

    Just add this lines to your theme’s functions.php file:


    function modify_bar_label( $translated_text, $text, $domain ) {
    switch ( $translated_text ) {
    case 'Near' :
    $translated_text = __( 'City and Country', 'tribe-events-calendar-pro' );
    break;
    }
    return $translated_text;
    }
    add_filter( 'gettext', 'modify_bar_label', 20, 3 );

    Let me know if this does the trick,
    Have a great one,
    Nico

    #984331
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Search by City and country’ is closed to new replies.