cancel
Showing results for 
Search instead for 
Did you mean: 

How to change a title tab in product page template?

How to change a title tab in product page template?

The theme is Ultimo.

 

I'd need to change to title of a tab in product page template.

 

Where should I find that template? It seems it is not changeble that title from the admin panel.

 

Thanks to all

2 REPLIES 2

Re: How to change a title tab in product page template?

Depends on the theme. Most theme tabs are named in the local.xml or catalog.xmlI believe.


If you want simple just use the jquery snippet below. Its specifically for Ultimo. Had a client that needed tabs renamed only on specific products.

jQuery('#tab-additional > a').text(function(i, oldText) {
        return oldText === 'Additional Info' ? 'New Name Here' : oldText;
    });

 On mobile Ultimo changes the tab class so you want to use

jQuery('#acctab-additional').text(function(i, oldText) {
        return oldText === 'Additional Info' ? 'New Name Here' : oldText;
    });

Re: How to change a title tab in product page template?

Thanks a lot.

 

Where should I insert those jquery?