Jump to content

how to change the max number of homepage's(index.php) meta description or meta keywords?


Recommended Posts

the default max number of homepage's(index.php) meta description or meta keywords is 255, is that possible we can setup over 255, I see lots website homepage's description or keywords are more over 255. anyone can tell me ? thank you very much!

Link to comment
Share on other sites

Take a database backup. Locate the table PREFIX_meta_lang, using PHPMyAdmin or similar change the column types as follows:

 

meta_lang.description from VARCHAR(255) to VARCHAR(1024)

meta_lang.keywords from VARCHAR(255) to VARCHAR(1024)

 

Then locate the file /classes/Meta.php, change:

 

protected	$fieldsSizeLang = array('title' => 128, 'description' => 255, 'keywords' => 255, 'url_rewrite' => 255);

 

to

 

protected	$fieldsSizeLang = array('title' => 128, 'description' =>1024, 'keywords' => 1024, 'url_rewrite' => 255);

 

You should reeally read what @tdr170 posted.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...