Zen Cart Logo
Forums / General Questions / Where To Add The Products Name's Character String?

Where To Add The Products Name's Character String?

Locked

Views: 665

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
9 Jun 2010, 6:59 AM
#1
stupidbird avatar

stupidbird

New Zenner

Join Date:
May 2010
Posts:
16
Plugin Contributions:
0

Where To Add The Products Name's Character String?

My website can't show the product's full name, i think it is a little short for character string of product's name

i log in phpmyadmin and open product table , but i can't find product_name to add the string, where do i to add the string ? pls help ,thanks:smile:

9 Jun 2010, 8:14 AM
#2
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: Where To Add The Products Name's Character String?

Oops.. Will post shortly...

9 Jun 2010, 8:18 AM
#3
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: Where To Add The Products Name's Character String?

it's in the Product Description Table.

Here's a clip from the SQL file:

Table structure for table 'products_description'

DROP TABLE IF EXISTS products_description;
CREATE TABLE products_description (
products_id int(11) NOT NULL auto_increment,
language_id int(11) NOT NULL default '1',
products_name varchar(64) NOT NULL default '',
products_description text,
products_url varchar(255) default NULL,
products_viewed int(5) default '0',
PRIMARY KEY (products_id,language_id),
KEY idx_products_name_zen (products_name)
) ENGINE=MyISAM;

9 Jun 2010, 8:19 AM
#4
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: Where To Add The Products Name's Character String?

... but why are you trying to load product data via phpMyAdmin?