I have a storeowner that likes to add styling to some of his category names using span tags with the styling.
For the most part, this can be "fixed" using mvt instead of mvte but the Smart Breadcrumbs is already using it.
The HTML is showing up title="&mvt:cats:name;"
which blows is apart to something like this
How can I strip out that HTML?
Code:
<span style="color:#FF0000;">Yada Yada<br>Yada Yada</span>
The HTML is showing up title="&mvt:cats:name;"
Code:
<span class="u-color-gray-50 u-inline-block" title="&mvt:cats:name;" itemprop="item" aria-current="page"> <span itemprop="name">&mvt:cats:name;</span> </span>
Code:
<span class="u-color-gray-50 u-inline-block" title="<span style="color:#FF0000;">Yada Yada<br>Yada Yada </span>" itemprop="item" aria-current="page">
Comment