- This topic has 3 replies, 2 voices, and was last updated 5 years, 7 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Forums › Pro Themes › Tourable Pro › How to remove "Destination:" from page title on trips page?
Hi, how can I remove ‘Destination:’ from the page title on the trips page for Destinations? Also on the Trip Styles page, remove ‘Trip Styles:’ from the page header. Thanks
Hello @richbeckett,
To remove the category names you have to add the custom code in your child theme functions.php file.
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/
Now after the activation of the child theme, add below given code in your child theme functions.php file.
function wp_travel_child_remove_cat_titles($title) {
if ( is_archive() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>' ;
}
return $title;
}
add_filter( 'get_the_archive_title', 'wp_travel_child_remove_cat_titles' );
Hope this helps.
Thank you.
That worked perfectly, thanks 🙂
Hello @richbeckett,
Glad we could help you.
Let us know if you have any issue further.
Also, we would really appreciate if you could help us by rating our plugin by following the link below:
https://wordpress.org/support/plugin/wp-travel/reviews/
Thank you.
Have a great day.
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |