Domanda

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

È stato utile?

Soluzione

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"}}'>
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top