Viewing 7 replies - 1 through 7 (of 7 total)
  • Care to share the URL of your site or perhaps a screenshot of whatd displaying where so we can get a better idea of what you want to change?

    Thread Starter antanast

    (@antanast)

    Thread Starter antanast

    (@antanast)

    If you see the the page-head there is an h1 text – Freedom…..

    That is taken automatically from the first product in that category and I want to avoid that.

    Hi Antanast,

    It seems as if these headings are displaying as such because of the way the theme author has designed it to be displayed. i.e It’s not a WooCommerce specific issue / fix

    There is good news though as you can hide these headings by using some simple CSS changes. However you may need to add this CSS code to each individual product or page (i.e Not globally) if you do not want to mess with the other H1 headings on your website. You can use a plugin such as WP Add Custom CSS to do this. Then use the following CSS to hide your headings on each page / post or product where you wanting to hide that heading.

    .page-head h1 {
        display: none;
    }

    Hope this helps?

    Jason

    Thread Starter antanast

    (@antanast)

    Thanks a lot Jason and it works. However the challenge now is to figure out how to add this CSS to the product categories 🙂

    Antonis

    Thread Starter antanast

    (@antanast)

    Got it!

    .term-products .page-head h1 {
    display: none!IMPORTANT;
    }

    Thanks a lot!!

    You’re welcome! Glad to have helped.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Product Category Text Heading’ is closed to new replies.