Page 80 of 85 FirstFirst ... 30707879808182 ... LastLast
Results 791 to 800 of 849
  1. #791
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    978
    Plugin Contributions
    6

    Default Re: Quantity Discounts for 1.3

    If you wish to style "quantity discount" text in your admin order pages, add td.ot-quantity-discount-Text to your admin\includes\stylesheet.css

    either in here

    Code:
    td.ot-subtotal-Text,td.ot-cod-fee-Text,td.ot-total-Text,td.ot-group-pricing-Text,td.ot-gv-Text,td.ot-loworderfee-Text,td.ot-shipping-Text,td.ot-subtotal-Text,td.ot-tax-Text,td.ot-coupon-Text,td.ot-quantity-discount-Text{
    font-weight:bold;
    }
    or as a separate entry

    Code:
    td.ot-quantity-discount-Text[/COLOR]{font-weight:bold;}
    hope this helps.

  2. #792
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,228
    Plugin Contributions
    6

    Default Re: Quantity Discounts for 1.3

    How would I duplicate quantity discounts?
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  3. #793
    Join Date
    Mar 2008
    Location
    Belgium
    Posts
    115
    Plugin Contributions
    6

    Default Re: Quantity Discounts for 1.3

    discount_1.12 is marked as up to zen_cart 1.5.3
    Will it work for 1.5.5a?
    Did anyone try already?

  4. #794
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,290
    Plugin Contributions
    125

    Default Re: Quantity Discounts for 1.3

    It works for all versions of Zen Cart.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  5. #795
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,449
    Plugin Contributions
    11

    Default Re: Quantity Discounts for 1.3

    Version 1.5.5b clean install with demo products. PHP 5.6.23 MySQL 5.5.52 Apache 2.4.18
    Dropped in the latest mod's includes folder in the root of haredoDOTcom/155b.
    Edited the tpl_product_info_display.php to include the example 2 statement.
    Installed in the admin with settings of:
    • true
    • 295
    • false
    • Standard
    • currency
    • Total by Item
    • items
    • 2
    • 2.5
    • 3
    • 5
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0

    Discount shows up as advertised on all items in the shop.
    Next, tried to exclude the Swat 3: Close Quarters Battle Linked item under Software :: Simulation.
    The product_id is 21 and the master category ID is 18.
    Have tried:
    • Adding case 18: to the category exclusion list
      Code:
         // Add categories you wish to exclude to this list.   // Go to Admin->Catalog->Categories/Products and look
         // at the left hand side of the list to determine
         // category id.   Note that 99999 and 99998 are just given
         // as examples.
         function exclude_category($category) {
            switch ($category) {
               case 18:
               case 99999:
               case 99998:
                  return true;
            }
            return false;
         }
    • Adding case 21: to the product exclusion list
      Code:
         // Add products you wish to exclude to this list.   // Go to Admin->Catalog->Categories/Products->[Your category]
         // and look at the left hand side of the list to determine
         // product id.   Note that 99999 and 99998 are just given
         // as examples.
         function exclude_product($id) {
            switch ($id) {
               case 21:
               case 99999:
               case 99998:
                  return true;
            }
            return false;
         }
    • Adding case 18: to the category exclusion list AND adding case 21: to the product exclusion list.
      Code:
         // Add categories you wish to exclude to this list.   // Go to Admin->Catalog->Categories/Products and look
         // at the left hand side of the list to determine
         // category id.   Note that 99999 and 99998 are just given
         // as examples.
         function exclude_category($category) {
            switch ($category) {
               case 18:
               case 99999:
               case 99998:
                  return true;
            }
            return false;
         }
      
      
         // Add products you wish to exclude to this list.
         // Go to Admin->Catalog->Categories/Products->[Your category]
         // and look at the left hand side of the list to determine
         // product id.   Note that 99999 and 99998 are just given
         // as examples.
         function exclude_product($id) {
            switch ($id) {
               case 21:
               case 99999:
               case 99998:
                  return true;
            }
            return false;
         }

    None of these combinations managed to exclude the discount listing from the Swat 3: product listing.

    Where might we be going wrong?

  6. #796
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,290
    Plugin Contributions
    125

    Default Re: Quantity Discounts for 1.3

    You have to add logic to the marketing text if you are using the user exits. This is explained in note 3.

    http://www.thatsoftwareguy.com/zenca...html#marketing
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  7. #797
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,173
    Plugin Contributions
    0

    Default Re: Quantity Discounts for 1.3

    Thanks that was the fix ...
    Happy Thanksgiving Scott ...

    Mark,

  8. #798
    Join Date
    Jun 2016
    Location
    Suffolk VA
    Posts
    605
    Plugin Contributions
    0

    Default Re: Quantity Discounts for 1.3

    Is there a way to specify a price per item rather than a discount percentage? We'd like to offer a '5 for $5 each' sale for certain products in one category. A purchase of any five of them would change the price to $5 each. I don't see any way to do that with the Quantity Discount plugin, but perhaps I just haven't read the notes closely enough.

  9. #799
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,290
    Plugin Contributions
    125

    Default Re: Quantity Discounts for 1.3

    Quantity Discounts doesn't do this. If you want to look on my site at Free Gift Chooser, it does things like this.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #800
    Join Date
    Jun 2016
    Location
    Suffolk VA
    Posts
    605
    Plugin Contributions
    0

    Default Re: Quantity Discounts for 1.3

    Quote Originally Posted by swguy View Post
    Quantity Discounts doesn't do this. If you want to look on my site at Free Gift Chooser, it does things like this.
    That appears to be only for osCommerce, though, not ZenCart.

 

 
Page 80 of 85 FirstFirst ... 30707879808182 ... LastLast

Similar Threads

  1. v153 quantity discounts for attributes
    By delia in forum General Questions
    Replies: 1
    Last Post: 14 Oct 2014, 02:34 PM
  2. v150 Quantity Discounts for shipping 1.5
    By jpmill in forum Built-in Shipping and Payment Modules
    Replies: 7
    Last Post: 7 Apr 2013, 05:28 PM
  3. v150 Quantity Discounts for 1.5?
    By mobishelf in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 21 Feb 2012, 12:40 AM
  4. Hide quantity discounts for general customers, show for groups only?
    By swamyg1 in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 3
    Last Post: 16 Nov 2009, 09:22 PM
  5. Quantity Discounts for Sets?
    By mwlahn in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 1
    Last Post: 30 Mar 2008, 07:39 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR