RoopJeans

Topic: How to increase Category name charecters limit ?

I am trying to increase the limit of category name letters
by default its 32 or so i want to increase in order to make little longer category names.
please suggest how  can i achieve it?

putypuruty

Re: How to increase Category name charecters limit ?

Hi!

In phpmyadmin, select your jobberbase database and run the following query:

Code:
ALTER TABLE `categories` MODIFY COLUMN `name` VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;

Replace 64 with the desired value.

RoopJeans

Re: How to increase Category name charecters limit ?

Thanks i will give it a try