Eyals Posted January 21, 2007 Share Posted January 21, 2007 Hello, I would like to show product's price and right below it the products price including individual shipping price, here's the 2 relevant code blocks from my product_info.php: if ($new_price = tep_get_products_special_price($product_info['products_id'])) { $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>'; } else { $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])); } and $products_ship_price = $currencies->display_price($product_info['products_ship_price']); What code should I use in order to show the total product's price + shipping price? Thanks for you time, any help would be appreciated. Quote Link to comment Share on other sites More sharing options...
Eyals Posted January 22, 2007 Author Share Posted January 22, 2007 Well, it seems like a complicated request after all... :-" no one can help? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.