Add link in code that goes to product review
Budget: $50 – $0 AUD
Below is my code, I want the review count to link to the product reviews for that specific product. Please amend and send back to me
Example of a review URL is
https://www.forestsuperfoods.com.au/product/australian-grown-lions-mane-mushroom-capsules/#reviews
add_filter('woocommerce_product_get_rating_html', function ($html, $rating, $count) {
global $product;
if ($html && $product) {
$html .= sprintf('<div class="gkartikey-product-rating-count">%s reviews</div>', $product->get_rating_count());
}
return $html;
}, 10, 3);
Example of a review URL is
https://www.forestsuperfoods.com.au/product/australian-grown-lions-mane-mushroom-capsules/#reviews
add_filter('woocommerce_product_get_rating_html', function ($html, $rating, $count) {
global $product;
if ($html && $product) {
$html .= sprintf('<div class="gkartikey-product-rating-count">%s reviews</div>', $product->get_rating_count());
}
return $html;
}, 10, 3);