How to remove the price currency symbol on a catalog widgetIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> This article explains how to remove the currency symbol from the price that is displayed on the SC Catalog Item widget. This process can also be used for the SC Order Guide widget. Customizing this value has potential issues. This article discusses these issues, possible work-arounds, and trade-offs as a result of these work-arounds. ReleaseAll supported versionsResolutionThe price is stored in the following variable with the corresponding currency symbol: data.sc_cat_item.price To remove the symbol and display only the price, use this code: data.sc_cat_item.price.substring(1); Since only the value is now displayed, use the following code to store it into the right variable: data.sc_cat_item.price = data.sc_cat_item.price.substring(1); Possible issue and work-around In some cases, you may still see the currency symbol. This is because there is a variable on the catalog item that is recalculating the price. Since the variable rendering finishes after the server script has been run, it ends up repopulating the price variable using the client controller code, resulting in a price value with the currency code. To avoid the currency value being refreshed from the initial server value, you can use the Angular one-time binding feature in the HTML template: <b>${Price}:</b> {{data.sc_cat_item.price}} Change the above to: <b>${Price}:</b> {{::data.sc_cat_item.price}} Note: When using this method, the price does not update when recalculated; it remains the initial value loaded with the catalog item.