Hi,
I'm trying to integrate ubercart with an affiliate system and have run into a problem. The [order-total] token has a dollar sign at the beginning of the numbers, something I need to remove.
I'm new to php, but this is what I tried:
<?php
$amount = "[order-total]";
$amount = substr($amount, 1);
?>...which unfortunately gives me:
order-total]
But if I don't use substr and do echo $amount it give me the dollar amount like $2.50
Is there any way I can remove the dollar sign from the beginning of the value in [order-total]?
Thanks.


