How to Remove Tabs on Product Page

producttabs

I need all product information like in default magento theme but without tabs.
And i need to order of product details like this:
first: additional information
below it a separator line or box and:
second: description
below it a line and:
Reviews
I use magento 1.9.1.0 with rwd theme

Best Answer

app\design\frontend\rwd\default\template\catalog\product\view.phtml

Edit above file & comment below lines of code, It will remove your tabs from the product view page.


    <div class="product-collateral toggle-content tabs">
            <?php if ($detailedInfoGroup = $this->getChildGroup('detailed_info', 'getChildHtml')):?>
                <dl id="collateral-tabs" class="collateral-tabs">
                    <?php foreach ($detailedInfoGroup as $alias => $html):?>
                        <dt class="tab"><span><?php echo $this->escapeHtml($this->getChildData($alias, 'title')) ?></span></dt>
                        <dd class="tab-container">
                            <div class="tab-content"><?php echo $html ?></div>
                        </dd>
                    <?php endforeach;?>
                </dl>
            <?php endif; ?>
        </div>

Related Topic