PDA

View Full Version : Longer Meta a Description tags


Daniel Svanda
12-25-2006, 03:07 PM
Hello,
How I can make loger meta and description tags? Actually I can put someting about 250 characters. Can you help me some modification for put more characters into Meta-descriptio and Meta-keywords?
Regards Rodman

Dave Baker
12-25-2006, 05:15 PM
Please make a backup copy of your database and execute the following query

ALTER TABLE `yourPrefix_categories` CHANGE `meta_description` `meta_description` TEXT NOT NULL ,
CHANGE `meta_keywords` `meta_keywords` TEXT NOT NULL ;
UPDATE `yourPrefix_categories` SET `id` = '0' WHERE `title` = "ROOT" LIMIT 1

and try to fill out these fields.

Daniel Svanda
12-25-2006, 06:14 PM
Hello,
Thank you very much!
It realy works!
Regards! Rodman

Dave Baker
12-25-2006, 06:19 PM
You're welcome!