discount_table.php
-
Hi there,
Is it possible you to have a permanent fix for the Minimum quantity – Maximum quantity place? I am having discount for one product 0,1€ and two products 0,2€ and so on.
I have added this code to functions.php:
165 row:
if (isset($range['from']) && !empty($range['from']) && isset($range['to']) && !empty($range['to'])) { if($range['from'] == $range['to']) { $discount_range = $range['from']; }else { $discount_range = $range['from'] . ' - ' . $range['to']; }
The original code is:
if (isset($range['from']) && !empty($range['from']) && isset($range['to']) && !empty($range['to'])) { $discount_range = $range['from'] . ' - ' . $range['to'];
After every update I have to place the same code there again and again ??
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘discount_table.php’ is closed to new replies.