Wordpress侧边栏搞砸了。为什么?

时间:2015-02-12 14:04:37

标签: php css wordpress woocommerce wpml

在我的网站(我在本地开发)中,我改变了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插件进行翻译。

第一个截图是它应该看起来如何,第二个显示错误的结果。

How it should look How it looks -> the Buy This Photo box is gone

自从Woocommerce更新到2.2.3以来,这种奇怪的行为正在发生。今天更新。有人有想法吗?

1 个答案:

答案 0 :(得分:0)

发现它!在WPML设置中,产品的永久链接设置是错误的。 WooCommerce更新后为什么他们错了?你的猜测和我的一样好。