Hello, how are you?
I am using the WoodMart theme with WooCommerce and noticed an issue related to the HTML semantic structure and SEO on product category pages.
Currently, the main category title is rendered like this:
<span class=”entry-title title”>Category Name</span>
In other words, the category title is displayed as a <span> instead of an <h1> element.
As a result:
Product category pages end up without an H1 tag in the HTML
SEO analysis tools report H1 = 0
This negatively affects the semantic structure of the page for search engines
I also checked the page source (Ctrl+U) and confirmed that there is no <h1> element for the category title.
I would like to ask:
Is there any setting in WoodMart that allows the category title to be rendered as an <h1> instead of a <span>?
If not, which template file or hook would you recommend to modify this element without editing the theme core files?
The goal is simply to maintain the correct semantic structure, like this:
<h1 class=”entry-title title”>Category Name</h1>
while keeping the same visual styling provided by the theme.
I would appreciate it if you could advise the best practice within WoodMart to handle this.
Thank you.