Title: Comments
Last modified: December 7, 2017

---

# Comments

 *  [aleksandarstefanov](https://wordpress.org/support/users/aleksandarstefanov/)
 * (@aleksandarstefanov)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/comments-255/)
 * Hi everyone, i use wp + woocommerce. After each product there is tab like desription,
   review and etc. When someone write a review for product its only show in product
   page. I want to show this review also on other page. Is it immposible or not ?
   Thank you !

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Rushabh Shah](https://wordpress.org/support/users/rushabh4486/)
 * (@rushabh4486)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/comments-255/#post-9760034)
 * Hi aleksandarstefanov,
 * Nothing is impossible.
 * Whenever you want to review of the product you can display on any page just need
   to hook and filter of proper place. Here I have see you one example. If you want
   display review on shop page just put below code in your active theme’s functions.
   php file.
 *     ```
       add_action('woocommerce_after_shop_loop_item', 'add_star_rating' );
       function add_star_rating()
       {
       global $woocommerce, $product;
       $average = $product->get_average_rating();
   
       echo '<div class="star-rating"><span style="width:'.( ( $average / 5 ) * 100 ) . '%"><strong itemprop="ratingValue" class="rating">'.$average.'</strong> '.__( 'out of 5', 'woocommerce' ).'</span></div>';
       }
       ```
   
 * Thanks,
    Rushabh Shah
 *  Thread Starter [aleksandarstefanov](https://wordpress.org/support/users/aleksandarstefanov/)
 * (@aleksandarstefanov)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/comments-255/#post-9760083)
 * I do that but nothing change. I want to put this reviews also on page ( Feedback
   with stars ) – [https://adrenalinefashion.com/](https://adrenalinefashion.com/).
   I want reviews from product to come on this page too. Please help me.
 *  [Rushabh Shah](https://wordpress.org/support/users/rushabh4486/)
 * (@rushabh4486)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/comments-255/#post-9762451)
 * Hi aleksandarstefanov,
 * I have understood your query. I want to suggest you below link. And I know it
   definitely helps you.
 * [Plugin link](https://shopitpress.com/plugins/sip-reviews-shortcode-woocommerce/)
 * If you have any query or concern about same then please let me know so that I
   can help you.
 * Thanks,
    Rushabh Shah
    -  This reply was modified 8 years, 5 months ago by [Rushabh Shah](https://wordpress.org/support/users/rushabh4486/).

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Comments’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 3 replies
 * 2 participants
 * Last reply from: [Rushabh Shah](https://wordpress.org/support/users/rushabh4486/)
 * Last activity: [8 years, 5 months ago](https://wordpress.org/support/topic/comments-255/#post-9762451)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
