When I create Categories it is limited to 50 characters. Please show me the file so I can add the characters. Please indicate the file location for me to edit.
- MSAnswered
Hello,
That might be due to database column. You can modify the
name
column on yourtec_categories
table and change it as you need.Thank you
- TBAnswered
I have fixed in the database as you instructed without success. The categorie title is limited to 50 characters. You can test on the demo. Please let me know where to edit the categorie’s title more characters.
- MSAnswered
Hello,
Yes, the title is saved in the
name
column of thetec_categories
table.ALTER TABLE `tec_categories` CHANGE `name` `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8_general_ci NULL;
You can run the above query after selecting your database. Once done add/edit category to check if it is saving more than 50 chars.
If you still can’t manage, please hire any developer to help you.
Thank you
- TBAnswered
Thank you so much I made it!
Can you tell me: Is there a way to make the sidebar stand still at the end of the banner when dragging the mouse down?
- MSAnswered
Hello,
No, there is no setting for that. You can modify the item code as you need. The sidebar view file is
themes/default/views/sidebar.php
Thank you
- Login to Reply