Question

I would like to display only title in product information tab on product page after page load. When I click on title name , need to show their particular content.

enter image description here

Était-ce utile?

La solution

For the remove active on product page tab after page load. You have to need update "openedState":"active" to "openedState":"false" in details.phtml file.

File path: magento/vendor/magento/module-catalog/view/frontend/templates/product/view/details.phtml

Override the details.phtml file to your theme and update code.

Find:

<div class="product data items" data-mage-init='{"tabs":{"openedState":"active"}}'>

Update to:

<div class="product data items" data-mage-init='{"tabs":{"openedState":"false"}}'>
Licencié sous: CC-BY-SA avec attribution
Non affilié à magento.stackexchange
scroll top