Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 41
  1. #11
    Join Date
    Mar 2006
    Location
    Trucksville, PA
    Posts
    137
    Plugin Contributions
    0

    Default Re: Change model to manufacturer

    Quote Originally Posted by TinaS
    EZPopulate is only a simple fix it really is better to do it the way that Linda says because that is how zen is set to work...

    If you want to go the ezpopulate way and just change the model numbers the support thread with a link to that download is at :

    http://www.zen-cart.com/forum/showth...ght=ezpopulate
    Yeah, but if you don't know what your doing, I may screw it up even more. So it narrows down to EZPopulate mod, or redoing my whole thing by hand.

    Well, thanks gorgeous. Anything else you can assist with as far as how to do it Linda's way, i'd like to see what's involved and try it.

  2. #12
    Join Date
    Jan 2005
    Location
    Lake Havasu, AZ
    Posts
    1,149
    Plugin Contributions
    0

    Default Re: Change model to manufacturer

    I am NOT a coder - sorry - I bet you one of the coders here would be able to give you a script or something to do this - but that being said what the proper steps would be is to enter your manufacturers in your admin area under Catalog/Manufacturers.

    This would cause the manufacturers field on your site to be populated with the list you have entered - then you would be able to assign your products to a manufacturer.

    One thing I just thought of is if you use EzPopulate to change model numbers you will end up with duplicate products because that is what Ezpopulate compares in order to determine new vs. updated products.

    Also - EZPopulate has the manufacturers column so you could actually use that column - leave your model numbers the way they are and then let EZPopulate update your items with just the manufacturers info added.

    Hope that helps.
    When the world gets in my face I say Have A Nice Day.
    * I DO Think and I HAVE BEEN Zenned - therefore, I AM * I donate - do you?
    Custom Templates and Zen Services CRS Designs, Inc.

  3. #13
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    81

    Default Re: Change model to manufacturer

    Is it okay to delete existing manufacturers from your site in order to build the list from the products?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  4. #14
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    81

    Default Re: Change model to manufacturer

    Tina's right ... with Easy Populate you could basically just copy or rename the products_model column to manufacturers_name ... or something like that ... and reload the file.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

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

    Default Re: Change model to manufacturer

    Or ... with DrByte and I banging a few hammers around ...

    BACKUP YOUR DATABASE

    And run the follow:
    Admin ... Tool ... Install SQL Patch ...

    PHP Code:
    truncate table manufacturers;
    truncate table manufacturers_info;
    insert into manufacturers (manufacturers_namedate_addedselect distinct products_model as manufacturers_namenow() from products;
    insert into manufacturers_info (manufacturers_idlanguages_idselect manufacturers_id1 from manufacturers;
    update products pmanufacturers m set p.manufacturers_id m.manufacturers_id where p.products_model m.manufacturers_name
    Be sure to BACKUP ...

    Did you BACKUP first?!
    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: v1.5.5]
    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!

  6. #16
    Join Date
    Jan 2005
    Location
    Lake Havasu, AZ
    Posts
    1,149
    Plugin Contributions
    0

    Default Re: Change model to manufacturer

    Thanks Devs for suplying that code - I am gonna hang onto it just in case I have need in the future as well :)

    I knew that my solutions weren't the perfect way of doing it ;)
    When the world gets in my face I say Have A Nice Day.
    * I DO Think and I HAVE BEEN Zenned - therefore, I AM * I donate - do you?
    Custom Templates and Zen Services CRS Designs, Inc.

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

    Default Re: Change model to manufacturer

    Ain't that the sweetest little peice of code ...

    Heck ... it might even work ...
    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: v1.5.5]
    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!

  8. #18
    Join Date
    Mar 2006
    Location
    Trucksville, PA
    Posts
    137
    Plugin Contributions
    0

    Default Re: Change model to manufacturer

    I tell ya, you guys & gals are great!

    Its kinda late to try this today (gotta get up at 4am!), but I will be certain to try it tomorrow.

    Thank you ever so much!

  9. #19
    Join Date
    Mar 2006
    Location
    Trucksville, PA
    Posts
    137
    Plugin Contributions
    0

    Default Re: Change model to manufacturer

    Ok, i'm embarassed.

    I never backed up my database before (shame, shame, I know). Its about time I do, and now is the time before I install this nice peice of code.

    So - can someone walk me through on how to back up the database.

    I've logged into my control panel through my hosting company, and went to PHP My Admin. Now what?

    I also see the database ZenCart. I clicked on it, and this is where I left off.

    Anyone?

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

    Default Re: Change model to manufacturer

    You can do this with the Export link in phpMyAdmin when you click on your database name ...

    Or, you can download the Backup MySQL from the Downloads and install that on your site ... you will find the new Backup choice in your Admin ... Tools ...
    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: v1.5.5]
    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 2 of 5 FirstFirst 1234 ... LastLast

Similar Threads

  1. v139f Cannot change Model and Manufacturer on product page and listing
    By Musicaljewels in forum Basic Configuration
    Replies: 1
    Last Post: 17 Oct 2012, 05:48 PM
  2. Replies: 1
    Last Post: 15 Jan 2012, 07:11 PM
  3. Model, manufacturer, meta tag, or second category?
    By romotony in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 8 Sep 2011, 11:48 PM
  4. Manufacturer Model vs Supplier Model
    By OnTarget600 in forum Setting Up Categories, Products, Attributes
    Replies: 0
    Last Post: 6 Oct 2009, 07:15 AM
  5. Model & Manufacturer inGoogle Checkout Order
    By shakur96 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 4 Aug 2008, 02:41 PM

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