WooCommerce产品评论未显示在产品详细信息页面上

时间:2019-01-08 07:40:37

标签: wordpress woocommerce hook-woocommerce woocommerce-theming

我已经开发了一个非常基本的WordPress主题并安装了WooCommerce。 WooCommerce的所有功能都可以完美地适合我的主题。

问题:仅在产品详细信息页面,产品评论标签,评论列表和评论表格中缺少。

在WooCommerce设置下,评论设置已启用,而在WordPress中,默认讨论设置也已启用。

对于产品详细页面,我使用带有以下代码的“ single-product.php”模板。

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title();?></h2>
<?php the_content();?>
<?php endwhile; endif; ?>

注意:当我在我的functions.php中添加以下内容时,整个商店和WooCommerce都将停止工作,并且一切都会失真。

add_theme_support( 'woocommerce' );

请提出如何解决此问题的建议。

2 个答案:

答案 0 :(得分:2)

如果您编写的代码完美,但是请不要忘记产品管理员提供的“启用评论”选项。

在这里,我已经解释了供您参考的步骤。 在管理端产品数据中->高级->启用评论

enter image description here

答案 1 :(得分:0)

您需要添加此功能,还要检查注释是否启用? 点击此链接 https://github.com/woocommerce/woocommerce/wiki/Declaring-WooCommerce-support-in-themes

  function mytheme_add_woocommerce_support() {
  add_theme_support( 'woocommerce' );
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );