我已经开发了一个非常基本的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' );
请提出如何解决此问题的建议。
答案 0 :(得分:2)
答案 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' );