magentotabsattributesmagento-1.7

How to merge product description and additional information tabs?


I am using a Modern theme which separates all information into tabs. I want to merge some of the tabs as visitors hate clicking.

I spent hours searching, but can't fine one that actually works.

Here is example of what I want to achieve:

http://www.teasta.com/chocolate-mint-rooibos-herbal-tea-4oz-tin.html

You can see description appears just above the Additional information (attributes)

How do I do this in Magento 1.7.0?


Solution

  • For Remove Additional Information Tab comment following code from catalog.xml

    <action method="addTab" translate="title" module="catalog"><alias>additional</alias><title>Additional Information</title><block>catalog/product_view_attributes</block><template>catalog/product/view/attributes.phtml</template></action>  
    

    For display Additional Information in Product Description Tab paste following code in
    "catalog/product/view/description.phtml" file.

    <?php echo $this->getLayout()->createBlock('catalog/product_view_attributes', '', array('template'=> 'catalog/product/view/attributes.phtml'))->toHtml(); ?>