February 18, 2021 at 10:12 am
Hi,
I was trying to set the WooCommerce Archive Title Bar (background image, overlay, H1 color, min-height, etc.) via the customizer (WooCommerce > Product Catalogue > Archive Title) and I noticed that there seems to be few errors in the “post-type-archive-product” HTML code :
<section class="entry-hero -archive-hero-section">
<div class="entry-hero-container-inner">
<div class="hero-section-overlay"></div>
<div class="hero-container site-container">
<header class="entry-header -archive-title">
<h1 class="page-title archive-title">Page Title</h1>
</header>
</div>
</div>
</section>
I have experimented with some few changes and it works for me :
<section class="entry-hero product-archive-hero-section">
<div class="entry-hero-container-inner">
<div class="hero-section-overlay"></div>
<div class="hero-container site-container">
<header class="entry-header page-title">
<h1 class="entry-title">Page Title</h1>
</header>
</div>
</div>
</section>
Could you please take a look?
Thanks!
-
This topic was modified 5 years, 2 months ago by
Nomad's Team. Reason: Formatting