Adding WooCommerce Products & Star Rating to Forum Posts
Quote from kiikeboe on October 4, 2025, 7:45 pmHiii 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!
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 workereight on December 31, 2025, 8:28 amQuote from kiikeboe “Quote Spam delete” on October 4, 2025, 7:45 pmHiii 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
Quote from kiikeboe “Quote Spam delete” on October 4, 2025, 7:45 pmHiii 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:
