Как изменить текст вкладки сведений на странице товара?

Ответы:

10

app/design/frontend/<vendor>/<theme>/Magento_Catalog/layout/catalog_product_view_layout.xml

<?xml version="1.0"?>

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>        
        <referenceBlock name="product.info.details">
            <referenceBlock name="product.info.description">
                <arguments>
                    <argument translate="true" name="title" xsi:type="string">About</argument> //set your custom tab name
                </arguments>
            </referenceBlock>

            <referenceBlock name="reviews.tab">
                <arguments>
                    <argument translate="true" name="title" xsi:type="string">Customer Reviews</argument> //set your custom tab name
                </arguments>
            </referenceBlock>
        </referenceBlock>

    </body>
</page>
Ронак Чаухан
источник
Эй, все работает нормально. Как найти имя "reviews.tab", я не могу найти в "vendor \ magento \ module-catalog \ view \ frontend \ layout \ catalog_product_view.xml".
Сринивасан Лакшманан
9

Откройте свою тему catalog_product_view.xml

app/design/frontend/vendorname/themename/Magento_Catalog/layout/catalog_product_view.xml

И добавьте ниже код в конце вашего XMLфайла перед тегом тела

 <referenceBlock name="product.info.description">
                <action method="setTitle">
                    <argument name="title" xsi:type="string">Your text here</argument>
                </action>
 </referenceBlock>

Держите кеш отключенным или очистите кеш

Манодж Десвал
источник
Это рабочее решение и чистый способ изменения названия вкладки
Manoj Deswal