View Single Post
  #36  
Old 09-04-2012, 07:38 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Adapt Template

You can use the glossary addon with the product option labels but not with the actual product options I'm afraid, unless you have some custom coding done.

Demo (see engraving)

In skin/adapt/modules/Product_Options/customer_options.tpl

Replace...

Code:
{if $usertype eq "A"} {$v.class} {else} {$v.classtext|escape|default:$v.class} {/if}

With...
Code:
{if $config.Adapt.adapt_addon_glossary eq "Y"}<span class="glossary_highlight">{/if} {if $usertype eq "A"} {$v.class} {else} {$v.classtext|escape|default:$v.class} {/if} {if $config.Adapt.adapt_addon_glossary eq "Y"}</span>{/if}
__________________
xcartmods.co.uk
Reply With Quote