This topic has 2 replies, 2 voices, and was last updated 10 years ago by Anonymous.
Tagged: subheader
Viewing 3 posts - 1 through 3 (of 3 total)
Hello,
We’re using version 3.2.0 of LifeCare and we want to show the name of the post on the subheader, actually it’s showing always the name “Blog”. We have many posts in different categories, sometimes it shows the name of the post but sometimes it shows only the word “Blog”
Thanks for your help.
Open atp_generator.php file and find for the word “Blog”. If it is a single blog page, then you can change the text here in atp_generator.php file on line around 359.
$title = get_option('atp_postsinglepage') ? get_option('atp_postsinglepage') : 'Blog';
If it is a main blog page, then you can change it here on line around 370,
// iF IS PAGE B L O G
//--------------------------------------------------------
if (is_home()) {
$title = __('Blog','lifecare-textdomain');
}
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.