Reviews on product catalog/archive page
-
Hello, we use a third party integration for collecting product reviews. On the product page the review starts are shown, but on the catalog/archive page not.
After contacting the third party, Judge.me, they told us that we could include the review stars per product with the following shortcode: [jgm-preview-badge]
Can you please tell us how to include this shortcode?
We want to show the review stars below the product title.
Hi s0mbrer0,
Thanks for reaching to us.
Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_action('woocommerce_shop_loop_item_title', function () {
echo do_shortcode('CUSTOM SHORTCODE');
}, 12 );
Regards,