2013-12-20 52 views
1

我剛剛reskinned一個網站的客戶端,並試圖整理產品頁面,我想改變的一個項目是如何保修信息顯示在產品說明選項卡下,並有一個單獨的標籤爲它大商業保修信息正在顯示在產品描述

我已經檢查了product.html

 <div class="Content left_col" id="LayoutColumn2"> 
     %%Panel.ProductDetails%% 

     <div class="product-description"> 
      %%Panel.ProductTabs%% 
      %%Panel.ProductDescription%% 
      %%Panel.ProductVideos%% 
      %%Panel.ProductWarranty%% 
      %%Panel.ProductOtherDetails%% 
      %%Panel.SimilarProductsByTag%% 
      %%Panel.ProductByCategory%% 
      %%Panel.ProductVendorsOtherProducts%% 
      %%Panel.ProductReviews%% 
     </div> 

     <div class="box-up-sell"> 
      %%Panel.SimilarProductsByCustomerViews%% 
     </div> 
    </div> 

,並檢查panels.productdescription

<div class="Block Moveable Panel ProductDescription" id="ProductDescription"> 
<h3>%%LNG_ProductDescription%%</h3> 
<div class="ProductDescriptionContainer"> 
    %%GLOBAL_ProductDescriptionOptimizerScriptTag%% 
     %%GLOBAL_ProductDesc%% 
    %%GLOBAL_ProductDescriptionOptimizerNoScriptTag%% 
</div> 
<hr style="%%GLOBAL_HideSectionSeparator%%" class="ProductSectionSeparator" /> 

,但不能看到保修信息正在從

我認爲這應該是在一個單獨的標籤拉,在保修信息正在從拉,爲什麼它沒有自己的標籤的任何想法

回答

1

它應該來自產品保修面板(%% Panel.ProductWarranty %%)。您的模板代碼將確定實際的佈局,但是如果您的產品數據已正確配置,則其注入應該來自該面板。

相關問題