Hello,
Thanks for contacting us, and sorry for any inconvenience that might have been caused due to that.
Our plugin only takes the data from WooCommerce reviews automatically into the Schema markup.
That plugin you are using to gather reviews is not supported and you would need to gather them directly from the database and import them via code to your website.
Here’s an example we gave to one user using a different plugin:
add_filter( 'rank_math/snippet/rich_snippet_product_entity', function( $entity ) {
$stampedDBData = get_post_meta(get_queried_object_id(), 'stamped_io_product_reviews_new', true);
if( isset($stampedDBData) && $stampedDBData['count'] > 0 ) {
$entity['aggregateRating']['@type'] = "AggregateRating";
$entity['aggregateRating']['ratingValue'] = $stampedDBData['rating'];
$entity['aggregateRating']['ratingCount'] = $stampedDBData['count'];
}
return $entity;
});
The way you get the data from the database will depend on how that is saved from that plugin, so if you tell us how to get the data we can modify the filter further.
Don’t hesitate to get in touch if you have any other questions.
Thank you.
Hi Md. Sakib Khandaker,
Thank for reply me, and sorry I miss your email.
Can I send you login account (review plugin I’m using) then you create the code for me? that would be nice, because I don’t know anything about code.
Thank you so much
Hello,
You can forward the code to the developer of the review plugin you’re using so they can update it with their own data to pass the values.
And here’s a guide to adding the code to the website:
https://rankmath.com/kb/wordpress-hooks-actions-filters/
If you wanted us to apply the filter, please include the WordPress logins in the sensitive data section as well.
Hope that helps.
Thank you.