Viewing 3 reply threads
You must be logged in to reply to this topic.
I have selected the option to keep my page header on my blog posts. However, I don’t want the blog post title to be displayed here. I would just like to have the word Blog, and keep the post title underneath. Is it possible to do this in the php?
If I have to keep the title, I want to change the text-transform: capitalize; command to text-transform: none;
But I can’t find the file where this command is! Can you tell me?
Blog page is here:
Hello,
Please go to file includes\view\page_header.php and find this line:
<h1><?php echo esc_html($title) ?></h1>
Replace with this: <h1><?php if ( is_singular('post') ) { echo 'Blog'; } else echo esc_html($title) ?></h1>
Save file.
Best regards!
Thank you! That worked!
Just FYI: I clicked the box that says Notify me of follow-up replies via email. However, I did not get an email regarding your response.
Hello,
Glad it’s ok now.
Thanks for letting us know about the notifications. We will check this.
Best regards!
You must be logged in to reply to this topic.