Woocommerce archive-product.php会覆盖问题。

时间:2016-03-23 17:05:35

标签: php wordpress wordpress-plugin woocommerce

我正在尝试自定义存档产品页面,它在我本地服务器上运行时效果很好,但是当我在线移动它时,它会切换回默认模板。我现在试图解决这个问题一周,我已经阅读了有关此问题的所有其他答案,但其中大多数是针对较旧版本的woocommerce或解决方案不起作用。

作为疯狂的最后一个难民,我删除了所有可以找到的archive-product.php文件,即使是woocommerce源文件夹中的文件,但没有任何改变,我不知道网站正在获取模板。页面已经变得自我意识,我会发疯,因为我不知道接下来该做什么。

以下是local and online server

上的页面之间的区别

1 个答案:

答案 0 :(得分:1)

Hi Balint,

Please check if not did.
===============================

in functions.php add
add_theme_support( 'woocommerce' );
--------------------------------------

in theme root folder
add file woocommerce.php
and in that file set your own layout.
for example:-
<div class="wrapper">
<div class="sidebar">

// sidebar
</div>
<div class="inner">
<?php if ( have_posts() ) :
while(have_posts()) : the_post();

<?php woocommerce_content(); ?>
<?php 
endwhile;
endif;?>
</div>
</div>

For more details: go through 
https://docs.woothemes.com/document/third-party-custom-theme-compatibility/