Zen Cart Logo
Forums / General Questions / Quantity Discounts with salesmaker

Quantity Discounts with salesmaker

Views: 617

Results 1 to 4 of 4
24 Jun 2013, 1:59 PM
#1
dmagic avatar

dmagic

Totally Zenned

Join Date:
Oct 2008
Posts:
594
Plugin Contributions:
0

Quantity Discounts with salesmaker

http://www.king- magic.com/spiked-coin-p-62.html

The price after salesmaker discount is Sale: $0.55

The price when add Quantity Discounts for 1 it's need be 0.55 - why show the retial price ? ( without salesmaker )

Thanks for help .

25 Jun 2013, 4:46 PM
#2
dmagic avatar

dmagic

Totally Zenned

Join Date:
Oct 2008
Posts:
594
Plugin Contributions:
0

Re: Quantity Discounts with salesmaker

Any one ?

25 Jun 2013, 8:34 PM
#3
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Quantity Discounts with salesmaker

You can try these 4 changes and test to see if it works for you ...

Edit the file:
/includes/functions/functions_prices.php

and around line 1240 change the code in RED:

      $display_price = zen_get_products_base_price($product_id);
      $display_specials_price = zen_get_products_special_price($product_id, [B]false[/B]);

      switch ($products_query->fields['products_discount_type']) {

Edit the file:
/includes/modules/products_quantity_discounts.php

and around the line 86 change the code in RED:

$display_price = zen_get_products_base_price($products_id_current);
$display_specials_price = zen_get_products_special_price($products_id_current, [B]false[/B]);
$disc_cnt = 1;

Edit the file:
/your_admin_dir/includes/functions/functions_prices.php

and around line 1157 change the code in RED:

      $display_price = zen_get_products_base_price($product_id);
      $display_specials_price = zen_get_products_special_price($product_id, [B]false[/B]);

      switch ($products_query->fields['products_discount_type']) {

Edit the file:
/your_admin_dir/products_price_manager.php

and around line 844 change the in RED:

  $display_priced_by_attributes = zen_get_products_price_is_priced_by_attributes($_GET['products_filter']);
  $display_price = zen_get_products_base_price($_GET['products_filter']);
  $display_specials_price = zen_get_products_special_price($_GET['products_filter'], [B]false[/B]);
//  $display_sale_price = zen_get_products_special_price($_GET['products_filter'], false);

Note: Backup your files and check the results of these changes ...

25 Jun 2013, 8:34 PM
#4
allthingsidleroy avatar

allthingsidleroy

New Zenner

Join Date:
May 2013
Posts:
38
Plugin Contributions:
0

Re: Quantity Discounts with salesmaker

Salesmaker probably doesn't update discount quantity pricing.