Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3956195
Remove category title on category page
Open

Comments

  • theweeklychew started the conversation

    Hi.  I'd like to remove the category title from the top of the category page.  The breadcrumbs are sufficient.  How do I prevent the category from being shown as a title at the top of the page?  

    Thanks is advance for your help.

  •  2,803
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → General → Category, Tag, Search, Archive Pages → turn on the "Remove "Category:" Words on Category Pages" option.

    Regards,
    PenciDesign.

  • theweeklychew replied

    Thanks.  But I don't only want to remove the word "category:".  I want to remove the category title itself.  I don't want it to appear as a title on the page.


  •  2,803
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    body.category .archive-box {
      display: none;
    }
    

    Regards,
    PenciDesign.

  • theweeklychew replied

    Thanks!

  • theweeklychew replied

    I'd also like to remove the page title at the top of pages I have created as well.

  •  2,803
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    body.page .penci-page-header h1 {
      display: none;
    }
    

    Regards,
    PenciDesign.