Làm cách nào để thay đổi văn bản của tab chi tiết trên trang sản phẩm?


Câu trả lời:


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>

Này, nó hoạt động tốt. làm thế nào để tìm tên "review.tab" tôi không thể tìm thấy trong "nhà cung cấp \ magento \ module-catalog \ view \ frontend \ layout \ catalog_product_view.xml".
Srinivasan Lakshmanan

9

Mở chủ đề tùy chỉnh của bạn catalog_product_view.xml

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

Và thêm mã bên dưới vào cuối XMLtập tin của bạn trước thẻ body

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

Giữ bộ nhớ cache bị vô hiệu hóa hoặc xóa bộ nhớ cache của bạn


Đó là một giải pháp hiệu quả và cách thay đổi tên tab magento thuần túy
Manoj Deswal
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.