[Resolved] Elements not hiding on certain pages and more

Home Forums Support [Resolved] Elements not hiding on certain pages and more

Home Forums Support Elements not hiding on certain pages and more

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #148816
    Mathijs Kooij

    Thanks for looking into this. Support here is great. On my site (bestevaer.org) I only want to show the header on the frontpage and not on other pages. I want the pagetitel to never show. I can hide them on almost all the pages but on a few it doesn’t work. This is on Woocommerce pages and on the blog page (nieuws). Also choosing content, no sidebar doesn’t work

    #148850
    Mathijs Kooij

    I skiped hiding the header on all pages so forget about that. Only the problem that hiding the page title does not work with woocommerce pages.

    #148994
    Tom
    Lead Developer
    Lead Developer

    GP doesn’t have any control over WC titles like we do our own titles, but you can remove them with some CSS like this:

    .product_title {
        display: none;
    }

    Disable Elements/Sidebar Layouts won’t work on your blog index or main WooCommerce index because WP ignores metabox options for these pages.

    This is why we have a Blog Layout option in the Customizer (Customize > Layout).

    Let me know if you need more info πŸ™‚

    #149128
    Mathijs Kooij

    Thank you, but that only hides the title of a product on that page. I made a child theme and put the css there. The hiding of the product title works, but that is not what I need.

    I tried (al optins also with the !important behind it):
    .page_title {
    display: none;
    }

    Also
    .woocommerce. .page_title {
    display: none;
    }

    .woocommerce-page .page_title {
    display: none !important;
    }

    But all not working.

    #149130
    Mathijs Kooij

    I figured it out,I added this to the functions.php template:

    add_filter(‘woocommerce_show_page_title’,false);

    #149151
    Mathijs Kooij

    Of course in a child theme!

    #149178
    Tom
    Lead Developer
    Lead Developer

    Nice solution! Thanks for sharing πŸ™‚

    #159934
    Tony Amsterdam

    I have a similar problem, not with the page title but with the header. I want to show the header on the blog but hide it on the woocommerce pages. I need some filter for my child theme functions.php but my knowledge of PHP is very limited unfortunately. Any help would be greatly appreciated!

    #159973
    Tom
    Lead Developer
    Lead Developer

    Hi Tony,

    The entire site header?

    If so, you can hide it with this CSS:

    .woocommerce .site-header {
        display: none;
    }
    #160135
    Tony

    css doesn’t work; I already tried:
    .archive .site-header {
    display: none;
    }
    hiding elements also doesn’t work for the archive page. The only way to get rid of the header on the archive page is to hide it on the blog, but I want to keep it there.

    #160197
    Tom
    Lead Developer
    Lead Developer
    .woocommerce .site-header {
        display: none;
    }

    Doesn’t work?

    And:

    .archive .site-header {
        display: none;
    }

    Doesn’t work for archives?

    Can you link me to your site? Both of those should work just fine.

    #160220
    Tony

    Hi Tom.

    Sorry to have bothered you because it works now!
    Must have been my cache or the plugins I removed today.
    Thanks for your work!

    Tony

    #160222
    Tom
    Lead Developer
    Lead Developer

    Great! Most likely the cache πŸ™‚

    Glad I could help!

Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.