K
K
Konj1232019-02-28 10:53:22
WordPress
Konj123, 2019-02-28 10:53:22

Why are product reviews not showing in woocommerce?

The settings in woocommerce are set to display: 5c7792e211098137607800.jpeg
Feedback in the admin panel was left through the product editor: 5c77931448df2556597386.jpeg
Description in the product is not displayed: 5c77932957cb4220828494.jpeg
What is the reason and maybe some plugin can affect this?
Thanks in advance!

Answer the question

In order to leave comments, you need to log in

3 answer(s)
K
Konj123, 2019-02-28
@Konj123

Found through sql queries.
1) UPDATE `wp_posts` SET comment_status = 'closed'
2)

UPDATE `wp_posts` SET comment_status = 'open'  
     WHERE `post_type` = 'product'

J
Jupiter Max, 2019-02-28
@vardoLP

there, in my opinion, there are display settings in the product card

A
Anonimmus, 2020-12-14
@Anonimmus

5fd7c676edcd5418643813.jpeg
recently encountered, here is the solution, but if it doesn’t appear, then check the presence of lines in content-single-product

<?php
  /**
   * Hook: woocommerce_after_single_product_summary.
   *
   * @hooked woocommerce_output_product_data_tabs - 10
   * @hooked woocommerce_upsell_display - 15
   * @hooked woocommerce_output_related_products - 20
   */
  do_action( 'woocommerce_after_single_product_summary' );
  ?>
</div>

<?php do_action( 'woocommerce_after_single_product' ); ?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question