Yur refer to the table "xcart_categories". What is it?
Where is the table? In config file?
1) Add a new field show_image to the table xcart_categories:
Code:
ALTER TABLE `xcart_categories` ADD `show_image` CHAR( 1 ) DEFAULT 'Y' NOT NULL ;
Note: If you want the default option to always start with "No" instead of "Yes" to display category images, then just execute the code below instead:
Code:
ALTER TABLE `xcart_categories` ADD `show_image` CHAR( 1 ) DEFAULT 'N' NOT NULL ;
2) Add a new label lbl_show_image in the Language area:
Go to the Language option and select the language you want to edit. Make sure the Select topic is on the Labels option. Now, go down towards the bottom of the page and add a new label entry.
Code:
Where "Variable" = "lbl_show_image", "Description" = "Show image" and "Value" = "Show image"
__________________
Siripakdi
Version 4.0.13
|