This topic has 15 replies, 4 voices, and was last updated 8 years, 9 months ago by Fem.
Viewing 16 posts - 1 through 16 (of 16 total)
Hi!
How can i change the page title “blog” on the blog page?
I want to change “blog”to “nieuws” and add a custom subtext.
When i set the subheader options to custom on the blog page and edit the custom title and custom text and press save nothing happens.
I found a way to display it correct on the blog page by adding a shortcode to it but now the problem stil exist when i click on a blogpost via the homepage.
Anny idea what the problem can be?
Kindly,
Mark
Go to that particular blog page > page options > Subheader Custom Title(enter you title) > Subheader Custom Text(enter your custom text). Have a look at the screenshot provided.
Hi Pam,
That is the problem, on all other pages it is working this way but not on the blogpage?
I can fix it on the blogpage by adding this shortcode [blog limit=”-1″ pagination=”true” postmeta=”true”] but on the singlepost page (when you click on a post to read) it appears the title is fixed?
That is a post title. If you want to change that post title then you need change that from posts by going to that specific post.
If you can provide us WP Logins to your website with URL then we can it for you. Make sure you set the post as private reply so that only admin can see your wp-logins.
Fixed. Edited File: atp_generator.php
Topic is set to be resolved. If you wish to update this topic please reply here instead of creating another topic.
Hello, I have a the same issue with the Labora Theme. I need to change the default subheader text title for Blog Page and for Shop Page and Products. The solution you provided works for posts but not for pages and products. Can you help out?
@digiboxagency – You need to modify the coding in atp-generator.php file
Find Code
if ( is_single() ) {
if ( $labora_sub_option == 'customtitle' ) {
$labora_sub_title = get_post_meta( $postid, 'labora_page_title', true );
} else {
$labora_sub_title = esc_html__( 'Blog', 'labora' );
}
}
Modify Code:
if ( is_single() ) {
if ( $labora_sub_option == 'customtitle' ) {
$labora_sub_title = get_post_meta( $postid, 'labora_page_title', true );
} else {
$labora_sub_title = $labora_page->post_title;
}
}
Thanks.
But I can’t seem to find the file. It seems i do not have it. If It must be there, where should i look for it? On the other hand, can I create it and where should it be placed?
Thanks
Hi,
I found another file named iva-generator.php
Edited it and it worked.
Thanks
@digiboxagency – Glad to hear, BTW you need to extend license for more support in future.
Viewing 16 posts - 1 through 16 (of 16 total)
You must be logged in to reply to this topic.