Archived topic
Disable sitetitel and subtitle area on Woocommerce product page
7 replies · Started by Jarno on June 21, 2018
Hi,
I want to disable the sitetitle and subtitle area on the product page.
I can do this on the other pages however the product page is 'automatically' generated and I can't seem to find the settings to do this.
Thanks!
Hi,
can you provide us with access to the site?
Sure, you can use the following url for access"
Hi, can you check the customiser > site identity and tell me if the Hide Site Title and Hide Site Tagline are checked?
Hi David,
thank you for your reply.
I unchecked bot, but the header itself stays in place. I wan't to hide the complete header.
Normally this can be done by hiding the header element, however in this case the page is automatically generated, so there is no product page within de wordpress backend to hide the header element.
Hi Jarno, if you want to remove the site header across the entire site then this CSS will do the trick:
.site-header {
display: none;
}
If you want to remove it just from all Woo pages:
.woocommerce .site-header {
display: none;
}
Yes, this did the trick. Thanks!
Glad to be of help