Change Name of Product Description Tab (product_description_title)

Solved

Change Name of Product Description Tab (product_description_title)

wooflinen
Excursionist
17 1 4

On my theme, when I check "show description" it drops in the tab on the product page no problem. But I hate that the tab just says "Description" and I'd like to change that.

 

In the product.tabs.liquid file I discovered right where it is:

<span>{{ product_description_title }}</span>

 

I could just swap this out entirely with something better, but now I'm curious where this metafield might be (I looked under a product and it didn't exist), product_description_title,  so I can just keep the code as is.

All feedback appreciated.

Accepted Solution (1)
wooflinen
Excursionist
17 1 4

This is an accepted solution.

This was the fix.

Find Theme -> Click More Button (3 Dots) -> Select "Edit Default Theme Content" -> Under Product Table there are universal Metafields, including one for "Description"

Change that, the metafield adjusts on site without any theme coding required.

View solution in original post

Replies 3 (3)

wooflinen
Excursionist
17 1 4

Nevermind, found the metafield under Theme Default Preferences and was able to change it there.

DaisyVo
Shopify Partner
3793 412 499

Hi @wooflinen 

 

You can modify the text in the code snippet to the following without worrying about where the variable comes from:
<span>change-text</span>

Alternatively, you can search for product_description_title to see how many instances of this exist within the file.

There might be a section in the code above that creates a variable. Usually, this value is pulled from the theme customization settings, for example:
Example Screenshot

 

Best,
Daisy - Avada Support Team.

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
wooflinen
Excursionist
17 1 4

This is an accepted solution.

This was the fix.

Find Theme -> Click More Button (3 Dots) -> Select "Edit Default Theme Content" -> Under Product Table there are universal Metafields, including one for "Description"

Change that, the metafield adjusts on site without any theme coding required.