Hey,
Yeah the long way sounds like doing long division when you were in elementary school.
So the code that you gave me works besides when you aren't having a price for sale
This is what it looks like when you don't have a discount
The code that I have isHave any idea why it's doing that?PHP Code:if ($display_normal_price == 0) {
// don't show the $0.00
$final_display_price = $show_special_price . $show_sale_price . $show_sale_discount;
} else {
$final_display_price = 'Retail: ' . $show_normal_price . '<br />Today: ' . $show_special_price . $show_sale_price . $show_sale_discount;
}





