Your Time:
Our Time:
← Back to discussions

Blog title

Need help with a different issue? Search the forums or open a new ticket.
Open a support ticket

This topic has 15 replies, 4 voices, and was last updated 8 years, 9 months ago by Fem.

  • 2016-09-22 at 2:20 pm
    Support Expired
    #16640
    mzaagsma
    Participant
    • Topics: 1
    • Replies: 5
    • Total posts: 6
    • Post count: 5

    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?

    Home

    Kindly,

    Mark

    2016-09-22 at 3:11 pm
    #16641
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    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.

    2016-09-22 at 5:34 pm
    Support Expired
    #16652
    mzaagsma
    Participant
    • Topics: 1
    • Replies: 5
    • Total posts: 6
    • Post count: 5

    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?

    2016-09-22 at 5:39 pm
    Support Expired
    #16653
    mzaagsma
    Participant
    • Topics: 1
    • Replies: 5
    • Total posts: 6
    • Post count: 5

    Thank in advance

    2016-09-22 at 5:46 pm
    #16654
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    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.

    2016-09-22 at 5:53 pm
    Support Expired
    #16655
    mzaagsma
    Participant
    • Topics: 1
    • Replies: 5
    • Total posts: 6
    • Post count: 5

    Hi Pam,

    Thanks for your quick response, but that is not the problem.

    It is the paginetitle that i can’s change as you discribed above.

    You can see what i mean in the jpeg i have attached.

    2016-09-22 at 5:59 pm
    #16657
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    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.

    2016-09-22 at 6:01 pm
    Support Expired
    #16658
    mzaagsma
    Participant
    • Topics: 1
    • Replies: 5
    • Total posts: 6
    • Post count: 5
    This reply has been marked as private.
    2016-09-22 at 6:06 pm
    #16659
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    Fixed. Edited File: atp_generator.php

    2016-09-22 at 6:38 pm
    Support Expired
    #16662
    mzaagsma
    Participant
    • Topics: 1
    • Replies: 5
    • Total posts: 6
    • Post count: 5

    Thanx!

    2016-09-23 at 10:23 am
    #16667
    Anonymous
    Inactive
    • Topics: 0
    • Replies: 3227
    • Total posts: 3227
    • Post count: 0

    Topic is set to be resolved. If you wish to update this topic please reply here instead of creating another topic.

    2017-12-01 at 9:14 pm
    Support Expired
    #22366
    digiboxagency
    Participant
    • Topics: 0
    • Replies: 3
    • Total posts: 3
    • Post count: 3

    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?

    2017-12-04 at 12:18 pm
    #22379
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    @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;
    				}
    			}
    2017-12-04 at 1:47 pm
    Support Expired
    #22383
    digiboxagency
    Participant
    • Topics: 0
    • Replies: 3
    • Total posts: 3
    • Post count: 3

    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

    2017-12-04 at 2:05 pm
    Support Expired
    #22385
    digiboxagency
    Participant
    • Topics: 0
    • Replies: 3
    • Total posts: 3
    • Post count: 3

    Hi,
    I found another file named iva-generator.php
    Edited it and it worked.
    Thanks

    2017-12-04 at 2:32 pm
    #22388
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    @digiboxagency – Glad to hear, BTW you need to extend license for more support in future.

You must be logged in to reply to this topic.