Home Forums Free Themes Travel Ultimate Change to other phrase the “Tour details” phrase to open a Blog

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #111057
    Tried11
    Participant

    Hi guys,

    Need your help on how to change the default “Tour Details” to open a blog. Thank you.

    #111149
    wensolutions
    Keymaster

    Hello,

    Please add following given code in functions.php file of your child theme to change the phrase ‘Tour Details’.

    function wp_travel_customize_text($output){
    
    	$output ['excerpt_text'] = 'Open a Blog';
      	return $output;
    
    }
    
    add_filter("travel_ultimate_default_theme_options","wp_travel_customize_text");

    You can replace ‘Open a Blog’ with your desired text.

    Hope this helps.

    If you have any queries further, let us know.

    Thank you.

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