Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Mar 2013
    Posts
    4
    Plugin Contributions
    0

    Default Is it possible to create a sale on all products by a manufacturer at 1.51?

    Is it possible to create a sale on all products by a manufacturer at 1.51?

    My sale maker gives me an all product sale option and category sale option, but not by manufacturer... how can I do this?

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

    Default Re: Is it possible to create a sale on all products by a manufacturer at 1.51?

    SaleMaker is based on the master_categories_id of the Product ...

    If you were able to make a Category for something like:
    Manufacturer

    then subcategories for each of your Manufacturers you could make those categories the master_categories_id after Linking your Products to those Manufacturers Categories and setting them as the Master Category for each of your Products ...

    Now setup your SaleMaker sales based on the Manufacturers Categories you want on Sale ...

    You might try this on a test work site for your shop and see how this works and if it has the desired affect ...
    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!

  3. #3
    Join Date
    Mar 2013
    Posts
    4
    Plugin Contributions
    0

    Default Re: Is it possible to create a sale on all products by a manufacturer at 1.51?

    thanks a lot

  4. #4
    Join Date
    Mar 2013
    Posts
    4
    Plugin Contributions
    0

    Default Re: Is it possible to create a sale on all products by a manufacturer at 1.51?

    [QUOTE=Ajeh;1212063
    then subcategories for each of your Manufacturers you could make those categories the master_categories_id after Linking your Products to those Manufacturers Categories and setting them as the Master Category for each of your Products ...

    .[/QUOTE]

    Hi again, do you know how to make a quick update (or module) for several products from one manufacturer to add the new master manufacturer category?????

    one by one is so slowlyyyyyyyy!!!!!!

  5. #5
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Is it possible to create a sale on all products by a manufacturer at 1.51?

    Quote Originally Posted by dulux View Post
    Hi again, do you know how to make a quick update (or module) for several products from one manufacturer to add the new master manufacturer category?????

    one by one is so slowlyyyyyyyy!!!!!!
    I don't know the exact statement(s) that would be required; however, sql would be a way to make that type of update quickly. Otherwise, a version of ez populate may be able to help if that version supports sale maker for sale.
    Last edited by mc12345678; 21 Nov 2013 at 01:08 AM.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

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

    Default Re: Is it possible to create a sale on all products by a manufacturer at 1.51?

    Are you saying you are trying to get a single SQL that will build a Category with all the Products for one manufacturer?
    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
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Is it possible to create a sale on all products by a manufacturer at 1.51?

    Quote Originally Posted by Ajeh View Post
    Are you saying you are trying to get a single SQL that will build a Category with all the Products for one manufacturer?
    Ajeh, I am not sure if the question is to me or to the OP; however, I would think that a solution that would end up working would be sufficient. :)
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

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

    Default Re: Is it possible to create a sale on all products by a manufacturer at 1.51?

    If you want to make a Category with ALL the Products that have a manufacturers_id of XX as Linked Products ...

    1 Make a new Category and note the categories_id ... let's say it is 66

    2 Get the manufacturers_id ... let's say it is 3

    3 Backup your database in case you blow it ...

    4 Run in phpMyAdmin the command:
    Code:
    insert into products_to_categories (products_id, categories_id) select products_id, 66 from products where manufacturers_id = 3 and products_id not in (select products_id from products_to_categories where categories_id = 66);
    Now ALL Products with manufacturers_id 3 are Linked Products in categories_id 66

    Now, let's say you want categories_id 66 to be the master_categories_id for all these products ...

    Go to the Category categories_id 66 so that you can see the C for Copy on the Products and click it ... now click on Multiple Categories Linked Manager ...

    Down at the bottom of the page you will see:
    Reset ALL Products in the selected Category to use the selected Category as the new Master Categories ID ...
    Example: Resetting Category 22 would set ALL Products in Category 22 to use Category 22 as the Master Category ID Reset the Master Categories ID for All Products in Category:
    Enter the categories_id of 66 and all Products will be changed to have categories_id 66 as their master_categories_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!]
    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!

  9. #9
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Is it possible to create a sale on all products by a manufacturer at 1.51?

    Quote Originally Posted by Ajeh View Post
    If you want to make a Category with ALL the Products that have a manufacturers_id of XX as Linked Products ...

    1 Make a new Category and note the categories_id ... let's say it is 66

    2 Get the manufacturers_id ... let's say it is 3

    3 Backup your database in case you blow it ...

    4 Run in phpMyAdmin the command:
    Code:
    insert into products_to_categories (products_id, categories_id) select products_id, 66 from products where manufacturers_id = 3 and products_id not in (select products_id from products_to_categories where categories_id = 66);
    Now ALL Products with manufacturers_id 3 are Linked Products in categories_id 66

    Now, let's say you want categories_id 66 to be the master_categories_id for all these products ...

    Go to the Category categories_id 66 so that you can see the C for Copy on the Products and click it ... now click on Multiple Categories Linked Manager ...

    Down at the bottom of the page you will see:


    Enter the categories_id of 66 and all Products will be changed to have categories_id 66 as their master_categories_id ...
    And all I can say is, AND THAT'S WHY YOU AND THOSE AT ZC ROCK!!! Obviously know the inner workings/relationships of how the core of ZC works. I'm simply impressed, even if this isn't something I needed personally/professionally.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

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

    Default Re: Is it possible to create a sale on all products by a manufacturer at 1.51?

    Just had to fool with the way to build this bad boy ... then tested it out and voila! The magic occurred ... I thought it was pretty cool too!
    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!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 How to create a sale/special on products priced by attributes
    By sbaker6612 in forum Setting Up Specials and SaleMaker
    Replies: 2
    Last Post: 21 Nov 2015, 07:59 AM
  2. v151 create a link that shows all products from specific manufacturer
    By noyloza in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 14 Apr 2014, 08:24 AM
  3. Possible to Create Shipping Discounts on Specific Products?
    By dcENS in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 5 Nov 2009, 03:21 AM
  4. Delete All Products By Manufacturer
    By milobloom in forum General Questions
    Replies: 4
    Last Post: 16 Jan 2008, 01:28 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