- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2016
06:19 AM
05-21-2016
06:19 AM
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2016
12:22 PM
05-25-2016
12:22 PM
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;
});
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2016
01:01 AM
05-27-2016
01:01 AM
Re: How to change a title tab in product page template?
Thanks a lot.
Where should I insert those jquery?