Ha genius! thats awesome.
I have changed the code a little to make it more obvious what each is to:
$dollarId = 2;
$brazilId = 28;
$euroId = 1;
$britId = 4;
$dollarPrice = $this->currencyHelper->convertUniquePrice($price->price_value, $price->price_currency_id, $dollarId);
$brazilPrice = $this->currencyHelper->convertUniquePrice($price->price_value, $price->price_currency_id, $brazilId);
$euroPrice = $this->currencyHelper->convertUniquePrice($price->price_value, $price->price_currency_id, $euroId);
$britPrice = $this->currencyHelper->convertUniquePrice($price->price_value, $price->price_currency_id, $britId);
echo $this->currencyHelper->format($dollarPrice,$dollarId)."<br/>";
echo $this->currencyHelper->format($brazilPrice,$brazilId)."<br/>";
echo $this->currencyHelper->format($euroPrice,$euroId)."<br/>";
echo $this->currencyHelper->format($britPrice,$britId)."<br/>";
However it seems to put the currency icon in the wrong order (before the line return) so i get the attached picture
If i can get this solved i'd like to be able to wrap the currency icons in a class and the converted prices in another class so i can style them all individually, if you can point me in the right direction to doing this it would be appreciated and i am very thankful for all your assistance with this, regards...