×
Black Friday Savings
00Days
:
08Hours
:
42Minutes
:
56Seconds
Use Coupon 40%OFF

Includes 1 Year Priority Support

Shop Now

WP SITES

3093 Coded Tutorials & 296 Plugins

How to Display Product Comments on a Single Page

This guide explains how to display product comments on a single page using a plugin for WooCommerce product comments.

BASIC USAGE

  1. SHORTCODE FOR PRODUCT COMMENTS
    Use this shortcode to display all comments for a specific product:
[product_comment_images product_id="123"]

Replace “123” with the actual product ID you want to display comments for.

2. FINDING PRODUCT ID

  • Go to your WordPress admin
  • Navigate to Products > All Products
  • Click on the product you want
  • Look at the URL: /wp-admin/post.php?post=123&action=edit
  • The number after “post=” is your product ID (in this example: 123)

3. DISPLAYING COMMENTS ON A PAGE

  • Create a new page or edit an existing page
  • Add the shortcode where you want the comments to appear
  • Example: [product_comment_images product_id=”456″]
  • Publish/Update the page

ADVANCED USAGE

  1. DISPLAYING COMMENTS FOR CURRENT PRODUCT
    If you’re on a product page and want to show its comments:
[product_comment_images]

(No product_id needed – it will automatically use the current product)

5. CUSTOMIZING THE DISPLAY
You can add parameters to customize the display:

[product_comment_images product_id="123" limit="10" order="newest"]

Parameters:

  • limit: Number of comments to show (default: all)
  • order: “newest” or “oldest” (default: newest)

6. DISPLAYING ON PRODUCT PAGES
To automatically show comments on all product pages:

  • Edit your theme’s single product template
  • Add the shortcode where you want comments to appear
  • Example:

COMMENT FEATURES

  1. WHAT COMMENTS INCLUDE
  • Author name and email
  • Comment text
  • Uploaded images (if any)
  • Image captions and tags
  • Like/unlike functionality
  • Timestamp

8. COMMENT MODERATION

  • Comments can be approved/unapproved
  • Comments can be marked as spam
  • Comments can be moved to trash
  • Comments can be excluded from display

ADMIN MANAGEMENT

  1. MANAGING COMMENTS
  • Go to WordPress Admin > Product Comments
  • This shows all product comments in a dedicated admin area
  • Use bulk actions to moderate multiple comments
  • Or manage comments directly from individual product edit pages

10. PRODUCT-SPECIFIC MODERATION

  • Edit any product
  • Scroll down to “Product Comments” meta box
  • Approve/unapprove, spam, or trash comments directly
  • Exclude specific comments from display

TROUBLESHOOTING

  1. COMMENTS NOT SHOWING
    • Check if the product ID is correct
    • Verify comments are approved (not pending/spam)
    • Check if comments are excluded from display
    • Ensure the shortcode is properly formatted
  2. IMAGES NOT DISPLAYING
    • Check if images were uploaded with comments
    • Verify image permissions on server
    • Check browser console for JavaScript errors
  3. JAVASCRIPT ERRORS
    • If using Jetpack Boost, ensure “Defer Non-Essential JavaScript” is disabled
    • Or the plugin will automatically handle compatibility

EXAMPLE IMPLEMENTATIONS

  1. CUSTOM PAGE WITH MULTIPLE PRODUCTS
[product_comment_images product_id="123"]

Product 2 Comments

[product_comment_images product_id="456"]

LIMITED COMMENTS DISPLAY

[product_comment_images product_id="123" limit="5" order="newest"]

You can also add PHP code directly to a template file to display the comments like this :

<?php echo do_shortcode('[product_comment_images]'); ?>

SUPPORT

For additional help or customizations, refer to the plugin documentation or contact support.

Plugin Information:

  • Official Plugin
  • Price: $75.00
  • Includes: Priority Support, 1 Year Updates, Lifetime Usage

Note : This plugin is designed for WooCommerce products and requires WooCommerce to be installed and activated.

Was this helpful?

Yes
No
Thanks for your feedback!

Leave a Reply