在我的网站(我在本地开发)中,我改变了WooCommerce单一产品页面的行为。该网站使用英语和荷兰语。我从产品区域中删除了产品摘要,并将其显示在侧栏中。以下是侧边栏的代码:
<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<div id="secondary" class="widget-area" role="complementary">
<?php if ( !is_product() )
{
}
else
{?>
<aside id="product-summary" class="product-summary-custom widget">
<?php if ( is_product() ) {?>
<h3 class="widget-title"><?php printf(__('buy this photo:')) ;?></h3>
<?php do_action( 'woocommerce_single_product_summary' );?>
</aside>
<?php }
}
dynamic_sidebar( 'sidebar-1' ); ?>
</div><!-- #secondary -->
<?php endif; ?>
问题是它只在英文网站上显示,当我将语言改为荷兰语时,它就消失了。改回英语让它再次出现。 该网站使用WPML插件进行翻译。
第一个截图是它应该看起来如何,第二个显示错误的结果。
自从Woocommerce更新到2.2.3以来,这种奇怪的行为正在发生。今天更新。有人有想法吗?
答案 0 :(得分:0)