Okay
  Public Ticket #2346357
Removing Header Page Title in Woocommerce
Closed

Comments

  •  1
    lennertvermijl started the conversation

    Is there a way to completely remove the header, other than using display: none;?

    I want to remove the entire page header (grey bar including h1 title). Purpose of this would be so Google doesn't read the h1 and I can this h1 in the category description.

  •  1,089
    ThemeNectar replied

    Hey lennertvermijl,

    You can accomplish that by adding the following into a child theme functions.php file:

    function salient_shop_header() {
        return false;
    }
    

    Cheers