2014-01-16 100 views
0

我實際上試圖將產品頁面中的分組產品價格信息(包含分組到當前產品中的每個產品的名稱/價格/數量)從接近產品圖像的主區域移動到這是以tarifs命名的第一個現代標籤。如何在產品選項卡中獲得分組產品價格?

我的第一個標籤「tarifs」通常會調用文件/catalog/product/view/relatedsaph.phtml

我在做什麼是:

我謹目前顯示該信息的PHP電話:

echo $this->getChildHtml('product_type_data'); 

/catalog/product/view.phtml到我的文件/catalog/product/view/relatedsaph.phtml

然後我試圖改變參考名稱catalog.xml from

<PRODUCT_TYPE_grouped translate="label" module="catalog"> 
    <label>Catalog Product View (Grouped)</label> 
    <reference name="product.info"> 
     <block type="catalog/product_view_type_grouped" name="product.info.grouped" as="product_type_data" template="catalog/product/view/type/grouped.phtml"> 
      <block type="core/text_list" name="product.info.grouped.extra" as="product_type_data_extra" translate="label"> 
       <label>Product Extra Info</label> 
      </block> 
     </block> 
    </reference> 
</PRODUCT_TYPE_grouped> 

<PRODUCT_TYPE_grouped translate="label" module="catalog"> 
    <label>Catalog Product View (Grouped)</label> 
    <reference name="product.info.tabs"> 
     <block type="catalog/product_view_type_grouped" name="product.info.grouped" as="product_type_data" template="catalog/product/view/type/grouped.phtml"> 
      <block type="core/text_list" name="product.info.grouped.extra" as="product_type_data_extra" translate="label"> 
       <label>Product Extra Info</label> 
      </block> 
     </block> 
    </reference> 
</PRODUCT_TYPE_grouped> 

我改變了呼叫等待,爲在catalog.xml佈局文件中的「標籤」區域,否則我一樣複製粘貼修改後的XML代碼與給定值的參考名稱修改參考到我的local.xml文件,但沒有任何反應,信息不再顯示...並沒有出現在我的標籤...

有誰知道如何做到這一點?

回答

0

你好終於來了整個晚上(多麼奇怪,我總是在我的睡眠中得到我的答案,只有當我敢問他們,幾天沒有掙扎時,它只是現在我問我有答案,但儘管如此.. 。)

第一個選項卡,在

catalog.xml 

文件的定義如下:

<action method="addTab" translate="title" module="catalog"><alias>rates</alias><title>Rates</title><block>catalog/product_list_relatedsaph</block><template>catalog/product/list/relatedsaph.phtml</template></action> 

其實這個問題是我不知道我可以使用「別名」標籤CON 10噸作爲塊我願意在local.xml中移動這樣的聲明參考:

<PRODUCT_TYPE_grouped translate="label" module="catalog"> 
    <label>Catalog Product View (Grouped)</label> 
    <reference name="rates"> 
     <block type="catalog/product_view_type_grouped" name="product.info.grouped" as="product_type_data" template="catalog/product/view/type/grouped.phtml"> 
      <block type="core/text_list" name="product.info.grouped.extra" as="product_type_data_extra" translate="label"> 
       <label>Product Extra Info</label> 
      </block> 
     </block> 
    </reference> 
</PRODUCT_TYPE_grouped> 

,在這裏它的作品(謝謝大家反正:-)

相關問題