• Resolved scont

    (@scont)


    Good afternoon.

    I use Site reviews in the product catalog
    When checking for https://validator.w3.org / I get a lot of the same type of errors :

    Error: Duplicate ID glsr_384b4a82.From line 761, column 8; to line 761, column 217  <div class="glsr glsr-elementor" id="glsr_384b4a82" data-from='shortcode' data-shortcode='site_revie…' data-assigned_posts='6998' data-hide='[&quot;bars&quot;,&quot;if_empty&quot;,&quot;rating&quot;]'></div>

    To display Ratings in the card of each product, I use the shortcode :

    <?php echo do_shortcode('[site_reviews_summary hide="bars,if_empty,rating" assigned_posts="post_id" ]'); ?>
    • This topic was modified 2 years, 6 months ago by scont.
Viewing 1 replies (of 1 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    Try doing this instead:

    <?php 
    
    $shortcode = sprintf('[site_reviews_summary hide="bars,if_empty,rating" assigned_posts="post_id" id="summary-%s"]', get_the_ID());
    
    echo do_shortcode($shortcode);
Viewing 1 replies (of 1 total)

The topic ‘Error on Validator’ is closed to new replies.