Вопрос

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

Это было полезно?

Решение

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"}}'>
Лицензировано под: CC-BY-SA с атрибуция
Не связан с magento.stackexchange
scroll top