TB
Asked
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.
Please show me the file so I can add the characters.
Please indicate the file location for me to edit.
- MSAnsweredHello,
That might be due to database column. You can modify the `name` column on your `tec_categories` table and change it as you need.
Thank you - TBAnsweredI 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.
- MSAnsweredHello,
Yes, the title is saved in the `name` column of the `tec_categories` table.
```sql
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 - TBAnsweredThank 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? - MSAnsweredHello,
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