While Site Reviews does not yet provide a one-click integration with Woocommerce, it is relatively simple to do so.
a. Since your products each have a unique post ID, the bast way is to auto-assign your reviews directly to your products (if you needed to assign your reviews to something that did not have a post ID, then you could instead assign to categories).
b. If you are assigning reviews to products, then for performance reasons you should not be also assigning them to categories; only assign to one or the other).
c. To avoid repetition, you can use the do_shortcode function to place these shortcodes directly inside your product templates.
See also:
https://www.hostinger.com/tutorials/wordpress-do_shortcode
https://docs.woocommerce.com/document/template-structure/
Here are the shortcodes you would use:
1. This is how to display the submission form, the assign_to
option will auto-assign submitted reviews to the product that the form is displayed on:
[site_reviews_form assign_to=post_id]
2. This is how to display your submitted reviews, the assigned_to
option will tell Site Reviews to only display reviews that have been assigned to the current product page:
[site_reviews assigned_to=post_id pagination=ajax]
3. This is how to show the rating summary of the product, the assigned_to
option will tell Site Reviews to only display a summary of the reviews that have been assigned to the current product page:
[site_reviews_summary assigned_to=post_id]
For more detailed help with the shortcode options, please refer to the “Site Reviews > Help > Shortcodes” page.