2017-09-06 39 views
0

我很難找出在woocommerce.php文件中添加woocommerce循環的位置。如何將Woocommerce與自定義WordPress主題集成

這裏是page.php文件的代碼,

<?php 
/* 
Package: OnAir2 
Description: Normal single page template with sidebar 
Version: 0.0.0 
Author: QantumThemes 
Author URI: http://qantumthemes.com 
*/ 
?> 
<?php get_header(); ?> 
    <?php 
    get_template_part ('phpincludes/menu'); 
    get_template_part ('phpincludes/part-searchbar'); 
    ?> 
    <div id="maincontent" class="qt-main"> 
     <?php while (have_posts()) : the_post(); ?> 
      <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 
       <!-- ======================= HEADER SECTION ======================= --> 
       <?php get_template_part('phpincludes/part-header-caption-page'); ?> 
       <!-- ======================= CONTENT SECTION ======================= --> 
       <div class="qt-container qt-spacer-l"> 
        <div class="row"> 
         <div class="col s12 m12 l1 qt-pushpin-container"> 
          <div class="qt-pushpin"> 
           <?php get_template_part('phpincludes/sharepage'); ?> 
          </div> 
          <hr class="qt-spacer-m"> 
         </div> 
         <div class="col s12 m12 l8"> 
          <div class="qt-the-content"> 
           <?php the_content(); ?> 
          </div> 
          <?php if (comments_open() || '0' != get_comments_number()){ ?> 
           <hr class="qt-spacer-m"> 
           <?php comments_template(); ?> 
          <?php } ?> 
          <hr class="qt-spacer-l"> 
         </div> 
         <div class="qt-sidebar col s12 m12 l3"> 
          <?php get_template_part ( 'phpincludes/sidebar'); ?> 
          <hr class="qt-spacer-l"> 
         </div> 
        </div> 
       </div> 
      </div> 
     <?php endwhile; // end of the loop. ?> 
     <?php get_template_part ('phpincludes/part-sponsors'); ?> 
    </div><!-- .qt-main end --> 
    <?php get_template_part ('phpincludes/footerwidgets'); ?> 
    <?php get_template_part ( 'phpincludes/part-player-sidebar'); ?> 
<?php get_footer(); ?> 

我在哪裏添加

<?php woocommerce_content(); ?> 

我剛纔用了get頁眉和頁腳單獨試過,但輸出非常非常糟糕。由於開發商沒有使主題woocommerce兼容,我需要使它...

回答

0

the_content();替換爲woocommerce_content();。但仍不會採用設計。您必須手動使其兼容woocommerce。

+0

謝謝,我試過了,但它完全加入了頁眉和頁腳。內容部分不會顯示,這裏是鏈接到商店:http://bluebridgetechnology.co.za/client/dexterity/shop/ – user3385915