Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #237078
    Kozer
    Participant

    Hi, i started to use your Shutter Up Free template on my first portfolio page. It seems pretty cool, but i have one little problem.

    Header has a great options such as “custom header title” and text, which i was ready to use, but when i turn static page as my homepage, it’s changing to display only “Archives” (“Archiwa” in polish).

    Is there any posibility to display custom texts in header on homepage when having static page set? And, also, now every subpage shows it name and date on the header, which is not necessary, as the title of the galery/entry/subpage appears below the header.

    My WIP page is http://michalkozera.pl/.

    Thanks for sharing great theme!

    #237084
    Skandha
    Participant

    @kozer: To change the text Archives
    Go to => Appearance => Customize => Theme Options => Homepage / Frontpage Option => Posts Page Header Text => Edit the text and Publish.

    To hide the single post title and date
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .single-phort_post .section-title-wrapper, .single-phort_post .site-header-text {
        display: none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #237092
    Kozer
    Participant

    @kozer: To change the text Archives
    Go to => Appearance => Customize => Theme Options => Homepage / Frontpage Option => Posts Page Header Text => Edit the text and Publish.

    No effects. Honestly i don’t know where i can see those changes. Recent Posts Heading is changing when i turn on latest post on my homepage, but when it’s static page, there is no effect in Recent Posts Heading and Posts Page Header Text edit.

    To hide the single post title and date
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    Thanks for that, it works!

    #237213
    Skandha
    Participant

    @kozer: Hello there,
    You will need to select your homepage as a static homepage and then select your Homepage and Blog Page.

    Now when you
    Go to => Appearance => Customize => Theme Options => Homepage / Frontpage Option => Posts Page Header Text => Edit the text and Publish.

    You should see the change. Maybe you had not selected a Blog page earlier thats why the change was not showing up.
    Let me know if this works out!
    Kind Regards,
    Skandha

    #237272
    Kozer
    Participant

    @Skandha hello again,

    i have set Header Media enabled on “Excluding Homepage, Page/Post Featured“. Then, in Homepage Settings i checked “A static page” and set my Homepage, leaving Posts page unselected. At the end, i filled Posts Page Header Text with text, but still no results.

    Important fact is, that my current homepage is based on Portfolio plugin from Colormelon. It shows galleries basing on entries in plugin. I spotted today, that when i change my Homepage to, for example, O mnie (About Me) which is normal page in WP, then everything works excelent.

    #237344
    Skandha
    Participant

    @kozer: Hello there,
    You will need to Select a Posts Page for the option Posts Page Header Text.

    Let me know if this works out!
    Kind Regards,
    Skandha

    #237560
    maderas
    Participant

    Hi @Skandha, I have a similar question, but I haven’t been able to find an answer that works on my site. I don’t see a “Posts Page Header Text” option as you wrote in one of your responses above. I also tried the CSS Child Theme option that you suggested in another thread, but I couldn’t figure out how to correctly adopt it to my site. I’m using the Catch Sketch theme. I set up a static homepage and a posts page. Could you help me change the title on my Portfolio page from ‘Archives’? Ideally, I would like to place in image in that space, but alternate text will be fine if an image is not possible. And if we keep it at just text, I’d also like to change the color (it’s currently white text on a gray background). Thanks in advance for your help!

    http://www.maderaspartners.com/portfolio/

    #237863
    Skandha
    Participant

    @maderas: Hello there,
    To change the title of Portfolio Archive Page
    Go to => Child Theme folder => functions.php and add the following Code.

    add_filter( 'get_the_archive_title', function ( $title ) {
        if( is_post_type_archive('jetpack-portfolio') ) {
            $title = esc_html__( 'Portfolio', 'catch-sketch' );
        }
        return $title;
    });

    Now, Replace the text Portfolio in the code with the text of your choice.

    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Archives in header’ is closed to new replies.