Support » Plugin: TWB Woocommerce Reviews » Limit number of reviews shown?

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Abu Bakar

    (@absikandar)

    Hello.

    Right now this feature is not supported in the plugin but here is the workaround for this.

    FTP to your site > wp-content/plugins/twb-woocommerce-reviews folder, open the file “twb-output.php” inside it.

    Look for:

    $twb_wc_reviews = get_comments(
    	array(
    		'status' => 'approve',
    		'post_status' => 'publish',
    		'post_type' => 'product',
    		'parent' => '0',
    		'post_id' => $product_id
    	)
    );

    and replace it with following:

    $twb_wc_reviews = get_comments(
    	array(
    		'status' => 'approve',
    		'post_status' => 'publish',
    		'post_type' => 'product',
    		'parent' => '0',
    		'post_id' => $product_id,
    		'number' => '5'
    	)
    );

    Save the file and the comments number will be set to 5.

    Let me know if any issue.

    thanks

    Plugin Author Abu Bakar

    (@absikandar)

    Hello.

    I am changing this topic status to ‘Resolved’

    I hope your issue has been resolved.

    If not, then let me know.

    thanks

    Thread Starter jftidwell

    (@jftidwell)

    Sorry for the delayed reply.. This did work. Thank you!

    Plugin Author Abu Bakar

    (@absikandar)

    Glad to hear 🙂

    It would be awesome if you leave a review here https://wordpress.org/support/view/plugin-reviews/twb-woocommerce-reviews

    Plugin Author Abu Bakar

    (@absikandar)

    Hello.

    The new version of plugin has been released.

    There are many updates now including the option to limit number of reviews without modifying plugin core files.

    you can read more here https://wordpress.org/plugins/twb-woocommerce-reviews/

    If you previously have modified the core plugin files then make sure you create a backup of those files before updating.

    thanks

    Thread Starter jftidwell

    (@jftidwell)

    Thanks, I updated the plugin, but there is no option to limit the number of reviews in the UI. I can still do it by modifying the “twb-output.php” file though.

    Plugin Author Abu Bakar

    (@absikandar)

    Did you try the new modified shortcode?

    its as follows:

    [twb_wc_reviews product_id="" number="" exclude="" exclude_product=""]

    The number argument is where you can limit the number of reviews. For example the following shortcode will output only 5 reviews.

    [twb_wc_reviews product_id="" number="5" exclude="" exclude_product=""]

    You can ignore other parameters.

    A details of all of these parameters is listed on plugin main page.
    https://wordpress.org/plugins/twb-woocommerce-reviews/

    Let me know if you still having issues.

    Thanks

    Thread Starter jftidwell

    (@jftidwell)

    Sorry, I now realize the “limited number” is in the shortcode. Nice going and thank you!

    Plugin Author Abu Bakar

    (@absikandar)

    Great. Thanks
    I am marking this ticket as Resolved now.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Limit number of reviews shown?’ is closed to new replies.