Have you an URL to where the Product with discounts is not showing the right price?
Have you an URL to where the Product with discounts is not showing the right price?
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Sorry. I am not yet live, I am only on my laptop until I learn Zen Cart. I am finding it hard to express my attempts to modify pages.
I have on the Listing Page image in color Red what I am attempting to do and on the Product Information page.
*****
In the Listing Page I have a price showing for 'Call for Price' products. Also to add the red text before.
In the Product Information Page I have tried to add and IF condition to show 'FROM' text and the lowest quantityDiscounted price where a product has quantity discount. ELSE to not show the text 'FROM' and only show the base price. I fail.
LOL, appology, I do not know how to explain more.
You can try for the tpl_product_info_display.php to use:
Code:// echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']); $discount_price = zen_get_products_discount_price_qty((int)$_GET['products_id'], 5000); $discount_price = $currencies->display_price($discount_price, $products_tax_class_id); echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . ($products_discount_type ? ' Discounts from: ' . $discount_price : '' . zen_get_products_display_price((int)$_GET['products_id']));
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Scripting for Zen Cart is fundamentally no different than any other PHP coding. You first need to learn PHP well, depending on how much customizing you want to do. Then you can look at existing ZC files that handle similar kinds of things to what you want to do, for examples of ZC-specific functions, variables, etc. The wiki has numerous articles about the code structure and how to handle various parts of it.
Yes. I have a long way to learn. I am trying to script ELSEIF command per but loosing each time.
I have in order to hide a price when quantityDiscounts are used but show a price when not quantityDiscounts used is modified the
toCode:echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . ($products_discount_type ? ' Discounts from: ' . $discount_price : '' . zen_get_products_display_price((int)$_GET['products_id']));
It feels bad, but it works as intended. Yes?Code:echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . ($products_discount_type ? ' Discounts from: ' : '' . zen_get_products_display_price((int)$_GET['products_id']));
Grazie
Hi, I have applied this mod and it fits the bill nicely, however I have also added this mod to the site
Include and Exclude Tax in Prices (Net/Gross). I have struggled to get both to work together. Can anyone in this thread help me?
The full topic is @
http://www.zen-cart.com/showthread.p...VAT-TAX/page33
Any help anyone can give I will be hugely grateful, thank you.
Bookmarks