Using NorPrice with prices in the Description or CUSTOMVARs

Automatic multi currency display on entire catalog.

Run your catalog in a main currency (or a main and alternate) with the customer having the option to turn on an additional currency throughout the Catalog, Cart and Checkout.
Post Reply
norman
Site Admin
Posts: 1252
Joined: Sat Feb 07, 2004 9:55 pm

Using NorPrice with prices in the Description or CUSTOMVARs

Post by norman »

NorPrice supports additional prices (even in the text of a description).
All you have to do is add e.g.
(this example is on the
http://www.drillpine.biz/v7multiprice/a ... xtras.html page)

This week-to-view desk planner is available with an optional set of inserts
for next year at a cost of £3.00 !!<<script language=JavaScript>
<!--
showalt('£3.00');
//-->
</script>>!! (incl tax)
And you can, of course, use it with Custom Properties. Just substitute your
customvar for the £3.00 as above.

E.g In your Product Template

Code: Select all

Recommended Retail Price: CUSTOMVAR:RRP <script language=JavaScript>
<!--
showalt('CUSTOMVAR:RRP');
//-->
</script>
or if you have a price hard-coded in a Template then it's like

Code: Select all

Overseas delivery: £6.50 <script language=JavaScript>
<!--
showalt('£6.50');
//-->
</script>
Note that the single quotes e.g. '£3.00' are mandatory. A price will only be
detected if it contains at least 1 leading digit, a decimal point and 2 decimal
digits (n.nn, nn.nn, nnn.nn, etc). A leading minus is allowed.
Post Reply