• Resolved rockingdajoint

    (@rockingdajoint)


    I’m new to this…

    I’ve set up a store on my website but no matter what I do it continues to give the title Archive: Products in BOLD at the top of my page.

    I’ve tried editing the page direct in WordPress (it sees a blank page – everything is pre populated in Woo Commerce)

    There must be a setting somewhere that has established this?

    Help appreciated

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @rockingdajoint

    Thanks for reaching out!

    The simplest and easy way to hide the page title for your category archive is using CSS.

    Please try to add the following CSS code under Appearance > Additional CSS.

    /* Hide Archive Product Page Title */
    
    .archive.tax-product_cat .page-title {
        display:none!important;
    }

    Hope this helps!

    Thread Starter rockingdajoint

    (@rockingdajoint)

    Hi

    Thanks for your response – I’ve just tried that and it still seems to be showing…

    Help much appreciated btw !

    Hi @rockingdajoint

    Try to replace above CSS code with this new CSS code, under Customize > Additional CSS:
    ?

    ?.post-type-archive-product .page-title {
        display:none!important;
    }
    
    

    The final output should be this: https://screencast-o-matic.com/i/c36rqpVu1YF

    This CSS will remove the title from all WooCommerce category pages.
    ?
    If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).`

    Thread Starter rockingdajoint

    (@rockingdajoint)

    Woo!

    It worked – thank you

    I’ll put learning CSS on my to-do.

    For reference, what’s been happening and what did the CSS fix?

    You’re welcome @rockingdajoint, this CSS code was for hiding the archive title. And the title was coming from your theme setting if you don’t want to use the CSS code you can discuss it with your Theme developer and they will help you with that.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Archives: Products’ is closed to new replies.