Results 1 to 8 of 8
  1. #1
    Join Date
    Sep 2008
    Posts
    95
    Plugin Contributions
    0

    Default Group discount based on manufacturer

    Hi,

    I need to know is there a way where I can issue standard flat 5% or 10% etc., discount to all items on one or more particular manufacturer.

    thanking you in advance.

    ~ Time

  2. #2
    Join Date
    Dec 2006
    Posts
    87
    Plugin Contributions
    0

    Default Re: Group discount based on manufacturer

    Yeah.. I Also would like to know... Anyone?

    Thanks.

  3. #3
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Group discount based on manufacturer

    If you have added the Known Bug Fixes for v1.3.8a ... specifically the ones on #28 about the Sale Maker bug ...
    http://www.zen-cart.com/forum/showth...707#post696707

    You can create Categories for each of the manufacturers_id that you have and make that the Products Master Category ...

    Then, you can place the Master Category with a specific Sale for that Manufacturer ...

    I usually make a Category called Manufacturer (or something like that) and then add SubCategories for each manufacture ...

    Then, you can add the Products as Linked Products to those new categories and then set as the Master Categories ...
    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!]
    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!

  4. #4
    Join Date
    Sep 2008
    Posts
    95
    Plugin Contributions
    0

    Default Re: Group discount based on manufacturer

    Hi,

    I already have around 4000+ items with running site in above 10 categories and 50+ sub-categories. So redoing entire thing is not possible. Any idea how can I go around to implement your formula.

    ~ Time

  5. #5
    Join Date
    Dec 2006
    Posts
    87
    Plugin Contributions
    0

    Default Re: Group discount based on manufacturer

    Wow that was a quick reply... Thank you.

    I fixed the bug fix as you mentioned... But I'm having a hard time understanding the rest of the steps?


    You can create Categories for each of the manufacturers_id that you have and make that the Products Master Category ...

    Then, you can place the Master Category with a specific Sale for that Manufacturer ...

    I usually make a Category called Manufacturer (or something like that) and then add SubCategories for each manufacture ...

    Then, you can add the Products as Linked Products to those new categories and then set as the Master Categories ...
    Can you Elaborate a bit more.

    Thank You So Much.

  6. #6
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Group discount based on manufacturer

    Add a Category called:
    Manufacturers

    Now make subcategories in that for each Manufacturer ...

    Next, you can Copy the Products as Linked Products to those New Categories ...

    Once you have at least 1 Product in each of the New Categories, you might look at the Multiple Categories Links Manager that is at the bottom of the right panel when you hit C for Copy ...

    It has some handy methods to link Products to other Categories and change which category is the master_categories_id ...

    NOTE: be sure to backup all


    If you have MySQL 4.1 (or newer) I think it is ...

    there is a neat way to say add all products_id from the products table to the products_to_categories table where manufacturers_id = 3 and set the categories_id to 27 for the NEW Categoryand NOT add it if it is already there for categories_id 27 ...

    Where 3 is the manufactuers_id ...
    Where 27 in the new categories_id ...

    Code:
    insert into products_to_categories (products_id, categories_id) select products_id, 27 from products where manufacturers_id = 3 and products_id not in (select products_id from products_to_categories where categories_id = 27);

    Afterwards, you need to set this as the master_categories_id on the Products, and that can be done in the Multiple Categories Links Manager and at the bottom you can pick a Category to be the master_categories_id ...

    Again ... Always Always Always Backup your database before trying these ...


    And thank DrByte for helping me work through this fancy insert ...
    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!]
    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!

  7. #7
    Join Date
    Dec 2006
    Posts
    87
    Plugin Contributions
    0

    Default Re: Group discount based on manufacturer

    I have too many categories and products to do this. But lets say I do this, is there any way to hide that category (and all subcategories and products under it) called manufacturer that is now added to the list of categories in the front-end of the website?

    Thanks Again...

  8. #8
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Group discount based on manufacturer

    Make the Manufacturers Category and set it to status off ...

    Then make your other Categories ...

    Now you can use the command after you make each Category to load the Products for the Manufacturer into it as Linked Products ...
    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!]
    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!

 

 

Similar Threads

  1. v150 password protect pages based on discount group
    By gazag in forum General Questions
    Replies: 0
    Last Post: 18 Feb 2012, 06:45 AM
  2. Set max discount for Group Discount + Discount + etc.
    By KEnik in forum Setting Up Specials and SaleMaker
    Replies: 0
    Last Post: 16 Jun 2010, 05:39 PM
  3. Set up group discount per manufacturer?
    By tracimurphy in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 6
    Last Post: 9 Mar 2009, 07:36 PM
  4. Code: is customer member of discount group? - restricting view based on membership
    By wputler in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 8
    Last Post: 20 Feb 2009, 08:43 PM
  5. Group Discount - Based on Retail Price
    By vik007 in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 5
    Last Post: 3 Dec 2008, 03:06 AM

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