我實際上試圖將產品頁面中的分組產品價格信息(包含分組到當前產品中的每個產品的名稱/價格/數量)從接近產品圖像的主區域移動到這是以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
文件,但沒有任何反應,信息不再顯示...並沒有出現在我的標籤...
有誰知道如何做到這一點?