Home Forums Pro Themes  Travel Insight Pro Wp Travel Search Filter

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #126625
    Julian Lahusen
    Participant

    Hi, how can i change the text on the search filter? I would like to rename terms like search.

    Thank you

    #126720
    wensolutions
    Keymaster

    Hello @rickfamous,

    Yes, you can definitely change the search filter text through the filter and for this you need to create and activate the child theme.

    To know how you can create and activate the child theme, refer to below given link:

    https://wptravel.io/how-to-create-a-child-theme/

    After creating the child theme, in your child theme functions.php paste below given code.

    function customized_strings( $strings ) {
        $strings['trip_type'] = __( 'Your Trip type', 'wp-travel' );
        $strings['search'] = __( 'Your Search', 'wp-travel' );
        $strings['location'] = __( 'Your Location', 'wp-travel' );
        return $strings;
    }
    add_filter( 'wp_travel_search_filter_label_strings', 'customized_strings' ); 

    Here change the text as per your requirement.

    Thank you.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.