Magento 1.9 Product View – How to Display Accordion in Product View Page

magento-1.9product-viewrwd-theme

Is there a way to show accordion instead of tabbed view for product description for desktop view like its in mobile version of the rwd theme

Best Answer

I found this myself.To change tabs to accordion, edit

_catalog-product.scss

@include bp(min-width, $bp-medium + 1) {

    .product-collateral {
        @include tabs;
    }
}

change this to

@include bp(min-width, $bp-medium + 1) {

    .product-collateral {
        @include accordion;
        @include accordionCollapse;
    }
}
Related Topic