
Donna
Staff
/ Moderator

Oct 29, 2009, 2:24 PM
Post #4 of 6
(4398 views)
Shortcut
|
|
Re: [panthony] currency issues
[In reply to]
|
Can't Post
|
|
Hi Anthony! In that case, you would just need to create two more price fields, so you could use one for each currency. Doing this will add new fields, which you can see via the Code Generator. In the Code Generator, look for your new field names, and you'll see the code you need to add. It will look something like this on a detail page: <?php echo $listingsRecord['fieldname'] ?> (Note: That won't be it exactly, make sure you grab the code directly from your own code generator.) Then, copy & paste this directly into your template wherever you want the price to show up. For example, say you have a listing page, and the current code around the displayed price is this:
Price: <?php echo $listingsRecord['price'] ?> To display three different currencies, you could do something like this:
Price in US: <?php echo $listingsRecord['price'] ?><br /> Price in ANG: <?php echo $listingsRecord['ang'] ?><br /> Price in Euro's: <?php echo $listingsRecord['euro'] ?><br /> Does that make sense? Donna -- support@interactivetools.com
|