How to change the $ in the product list widget

Posted by Community Admin on 05-Aug-2018 23:49

How to change the $ in the product list widget

All Replies

Posted by Community Admin on 25-May-2012 00:00

Im not able to change the $ in front of the prices in the product list widget. USD is deletet from the currency in settings,
Anybody knows?

Posted by Community Admin on 29-May-2012 00:00

any help?

Posted by Community Admin on 29-May-2012 00:00

Edit your template see attach,

you need to hide this:

<sfCatalog:DisplayPriceField id="displayPriceField" ObjectType="Product" ObjectId='<%# Eval("Id") %>' Visble="false" runat="server" />
 
and use the format you want:

<%# Eval("Price") %>
<%# Eval("SalePrice") %>
 
<%# String.Format("0:C", Eval("Price")) %>
<%# String.Format("0:C", Eval("SalePrice")) %>


Posted by Community Admin on 04-Jun-2012 00:00

I have the same issue in the shopping -cart widget and the checkout widget. How to not use the $


This thread is closed