mnkumar Posted September 9, 2006 Share Posted September 9, 2006 How can i change the default character length for the Product name? My products are Books and most of their tiltes are pretty long. While dsplaying they are getting truncated. Link to comment Share on other sites More sharing options...
12stepcds.com Posted October 26, 2006 Share Posted October 26, 2006 How can i change the default character length for the Product name? My products are Books and most of their tiltes are pretty long. While dsplaying they are getting truncated. I have the same question. Did you find your answer? Link to comment Share on other sites More sharing options...
nttcar Posted February 6, 2007 Share Posted February 6, 2007 I have the same question. Did you find your answer? Same here, Anyone has answer how to increase the product name length ? from PHPMYADMIN ? if yes, what additional step. thx Link to comment Share on other sites More sharing options...
Rachael w. Posted February 6, 2007 Share Posted February 6, 2007 phpmyadmin, products_description, products_name, varchar(64) change 64 to the number of characters you'd like. Link to comment Share on other sites More sharing options...
satish Posted February 6, 2007 Share Posted February 6, 2007 DROP TABLE IF EXISTS products_description; CREATE TABLE products_description ( products_id int NOT NULL auto_increment, language_id int 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 products_name (products_name) ); is the schema of table so product length upto 64 char will be taken care. if You need more length then modify table products_description field products_name Satish Mantri Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.