Hi!
I have changed the row tag to ul
, and the column tag to li
, to meet WooCommerce product loop standards while building a shop layout.
The problem is this:
<ul class="x-row">
<div class="x-row-inner">
<li class="x-col">
</li>
</div>
</ul>
As you can see, the markup is not valid because the li
tag is wrapped inside a div with class of x-row-inner
.
I have turned the global container off, but that doesn’t help either.
What would be the solution for this? Is there a way to change the x-row-inner
div into ul
instead of the x-row
?
Thanks!