Hi there, we found that the breadcrumb element we use does not follow google schema like below and also the product name used H1 (duplicate H1 with product title), where can we customize this?
<ul itemscope itemtype="https://schema.org/BreadcrumbList" class="woocommerce-breadcrumb">
<!-- Home -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="https://www.example.com/">
<span itemprop="name">Home</span>
</a>
<meta itemprop="position" content="1" />
</li>
<!-- Category -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="https://www.example.com/chairs/">
<span itemprop="name">Chairs</span>
</a>
<meta itemprop="position" content="2" />
</li>
<!-- Product (last item, not linked) -->
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<span itemprop="name">Inser Chair</span>
<meta itemprop="item" content="https://www.example.com/chairs/inser-chair/" />
<meta itemprop="position" content="3" />
</li>
</ul>