Slider has duplicate id’s – bad html
-
A product in the slider has anchor tags for the product image and for the product title with the same id. This is bad html as an id must be unique. In the plugin file wpcs-shortcodes.php on line 239
<a id="id-<?php the_id(); ?>"
…and line 252
<h4 class="product_name"><a id="id-<?php the_id(); ?>"
…produce two anchor tags with the same id, for example
<a id="id-483" ... >
The “id-” prefixes should be changed to ensure the id’s are unique.
Tony
- The topic ‘Slider has duplicate id’s – bad html’ is closed to new replies.