Dear Customers! We're out of the office from the 6th of October to the 11th of October. We sincerely apologize for the inconvenience. For WordPress 5.5.* related issues, please visit this article

Okay
  Public Ticket #1647385
How to remove page title on shop pages
Closed

Comments

  • Keith Fletcher started the conversation

    How can I  remove the page title on product pages and cart pages and checkout pages.


  •  255
    Joanna replied

    Hi Keith,

    There is not an option at the moment, but I can give you a small CSS snippet to remove it manually for you:

    .woocommerce-page #page-title {display:none;}
    .woocommerce-page #main-content {
        padding-top:210px;}
    @media (max-width:1000px) {
        .woocommerce-page #main-content {
            padding-top:0px;}    
    }
    

    That will remove it on all screen sizes, and it will make sure that the content is not then hidden under the menu.

    Add it to the Theme Options > Advanced > Custom CSS Styling box.


    Kind regards,
    Joanna
    Veented Support

    Find a helpful article for your theme here: https://veented.ticksy.com/articles/#article-categories

    Check out our latest article: How to Improve Page Loading Times

    Don't forget to hit the like button below if you are happy with your support answer :)

  • Keith Fletcher replied

    Thanks that worked.

    I am also trying to remove theses same titles from the events page here:

    http://pagani.temp.domains/~mgcar2/events/

    please let me know if you can help

  •  255
    Joanna replied

    Hi Keith,

    Hmm, this one could be a bit more tricky as the 'Events Calendar' does not add anything to the page title via CSS, so what we can do is have a look at the body class where it is added there, and then just use the same CSS as before!

    .post-type-archive-tribe_events #page-title {display:none;}
    .post-type-archive-tribe_events #main-content {
        padding-top:210px;}
    @media (max-width:1000px) {
        .post-type-archive-tribe_events #main-content {
            padding-top:0px;}    
    }
    

    Try that?


    Kind regards,
    Joanna
    Veented Support

    Find a helpful article for your theme here: https://veented.ticksy.com/articles/#article-categories

    Check out our latest article: How to Improve Page Loading Times

    Don't forget to hit the like button below if you are happy with your support answer :)