View Single Post
  #2  
Old 10-30-2006, 10:03 AM
 
dragos dragos is offline
 

Advanced Member
  
Join Date: Aug 2006
Posts: 97
 

Default Re: Change currency symbol position when using product price modifier option

If you still have this problem here it is how i solved it:
in File: /modules/Product_Options/func.js
change from
Code:
/* Update price */ if (document.getElementById('product_price')) document.getElementById('product_price').innerHTML=currency_symbol+price_format(price);
to
Code:
/* Update price */ if (document.getElementById('product_price')) document.getElementById('product_price').innerHTML = price_format(price)+currency_symbol;
__________________
X-Cart 4.1
*NIX
Reply With Quote