View Single Post
  #2  
Old 07-13-2011, 02:35 AM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

X-Guru
  
Join Date: Dec 2010
Posts: 6,373
 

Default Re: product options - price modifiers - display

Yes, you should edit the "skin/common_files/modules/Product_Options/customer_options.tpl" template.

Find and replace this code:
Code:
{if $o.modifier_type ne '%'} {currency value=$o.price_modifier display_sign=1 plain_text_message=1} {else} {$o.price_modifier}% {/if}
with this:
Code:
{if $o.modifier_type ne '%'} {currency value=$o.price_modifier display_sign=1 plain_text_message=1} {else} {if $o.price_modifier lt 0} {$o.price_modifier}% {else} +{$o.price_modifier}% {/if} {/if}
__________________
Alex Solovev,
Qualiteam

---

User manual Video tutorials X-Cart FAQ

You are welcome to press "Thanks" button
if you find this post useful

Click here to learn how to apply patches

X-Cart Extensions
Reply With Quote