You have:
What I believe (but haven't tried it) is that you want:Code:<td class="cartTotalDisplay"> <?php if ($product['productsPrice'] > 0){ echo $product['productsPrice']; }else { echo TEXT_QUOTE; } ?> </td>
Actually, I just put that onto my test cart and it works fineCode:<td class="cartTotalDisplay"> <?php $x = $product['productsPrice']; $x = substr($x,1); $x = str_replace(",","",$x); if ($x > 0){ echo $product['productsPrice']; }else { echo TEXT_QUOTE; } ?> </td>



