Magento product name change

I'm trying Magento and one thing I'm trying to do but just can't seem to get it will just change the title of the Product Description tab.

I tried searching on the internet, but there are tutorials on the internet for adding tabs (which don't work)

All I want is to just change the product description tab.

+3


source to share


1 answer


you can change it in the file:

app/design/frontend/YOUR-PACKAGE/YOUR-THEME/layout/catalog.xml

      

inside there is a line of code:



<action method="setTitle">
    <argument translate="true" name="title" xsi:type="string">Description</argument>
</action>

      

you just need to change <value>

node and put what you want

+4


source







All Articles