Please or Register to create posts and topics.

Adding WooCommerce Products & Star Rating to Forum Posts

Hiii everyone πŸ‘‹

I was wondering if anyone knows whether it’s possible to add WooCommerce products directly into a forum post (for example, to link a product from the shop to a discussion topic)?

Additionally, I’d love to know if there’s a way to add a star rating (1–5 stars) either to the post itself or to replies for example, so users can rate a product being discussed.

Has anyone done something similar, or do you know which hooks or plugins could make this possible?

Thanks in advance for any tips or examples!

Quote from kiikeboe “Quote Spam delete” on October 4, 2025, 7:45 pm

Hiii everyone β€β€β€πŸ‘‹β€β€β€

I was wondering if anyone knows whether it’s possible to add WooCommerce products directly into a forum post (for example, to link a product from the shop to a discussion topic)?

Additionally, I’d love to know if there’s a way to add a star rating (1–5 stars) either to the post itself or to replies for example, so users can rate a product being discussed.

Has anyone done something similar, or do you know which hooks or plugins could make this possible?

Thanks in advance for any tips or examples!

Asgaros doesn’t show WooCommerce star ratings by default, so you’ll need a small custom snippet. Use the product ID with wc_get_rating_html() and insert it in your forum template where you want the stars to appear.

Example:

echo wc_get_rating_html( get_post_meta( $product_id, β€˜_wc_average_rating’, true ) );
product