Results 1 to 6 of 6

Hybrid View

  1. #1
    Join Date
    Apr 2007
    Posts
    7
    Plugin Contributions
    0

    Default Re: Help with adding products

    Thanks for your reply Linda. Is there a link that I can go to that explains how to do it right? I don't know what code to add so I really need somthing to read to get me going in the right direction.

    Thankyou once again,
    Dean.

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

    Default Re: Help with adding products

    Did you make all new Product Types or did you just rename things in the product_types table?

    IF you just renamed things, do you intend to create full Product Type file sets for the catalog and admin?

    If not, you can remake the product_types table back to its original format and that should fix things ...
    PHP Code:
    DROP TABLE IF EXISTS product_types;
    CREATE TABLE product_types (
      
    type_id int(11NOT NULL auto_increment,
      
    type_name varchar(255NOT NULL default '',
      
    type_handler varchar(255NOT NULL default '',
      
    type_master_type int(11NOT NULL default '1',
      
    allow_add_to_cart char(1NOT NULL default 'Y',
      
    default_image varchar(255NOT NULL default '',
      
    date_added datetime NOT NULL default '0001-01-01 00:00:00',
      
    last_modified datetime NOT NULL default '0001-01-01 00:00:00',
      
    PRIMARY KEY  (type_id),
      
    KEY idx_type_master_type_zen (type_master_type)
    TYPE=MyISAM
    PHP Code:
    INSERT INTO product_types VALUES (1'Product - General''product''1''Y'''now(), now());
    INSERT INTO product_types VALUES (2'Product - Music''product_music''1''Y'''now(), now());
    INSERT INTO product_types VALUES (3'Document - General''document_general''3''N'''now(), now());
    INSERT INTO product_types VALUES (4'Document - Product''document_product''3''Y'''now(), now());
    INSERT INTO product_types VALUES (5'Product - Free Shipping''product_free_shipping''1''Y'''now(), now()); 
    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. Replies: 3
    Last Post: 9 May 2013, 09:46 PM
  2. Help with adding related products
    By ricangem in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 17 Apr 2011, 06:49 PM
  3. Need help with adding additional products under same group
    By bedtime21 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 13 Aug 2009, 10:17 PM
  4. Help with adding attributes to many products
    By mdegrandis in forum Setting Up Categories, Products, Attributes
    Replies: 6
    Last Post: 9 Jun 2009, 10:10 PM
  5. Help!!! Problem with adding products
    By mainline in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 29 Oct 2007, 05:36 PM

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