Thanks, but I tried that before posting. I just tried it again to be sure. I got the following:
Code:
Parse error: syntax error, unexpected '=' in /home/linksslc/public_html/fuelsaver-mpg/store/includes/templates/soft_blue/checkout_success/tpl_footer.php on line 90
Line 90 is the line with the echo statement. I haven't a clue why that line doesn't work after making the change. But it didn't throw an error before the change.
The modified code (that is throwing the error) is as follows:
Code:
$commissionable_order = ($order_subtotal - $coupon_amount - $group_pricing_amount);
$commissionable_order = number_format($commissionable_order,2,'.','');
if ($group_pricing_amount == 0)
{
echo "<script language=\"JavaScript\" type=\"text/javascript\" src="/affiliates/sale.php?amount=$commissionable_order&trans_id=$orders_id\"></script></td></tr>
</table>";
}
}