Last active
April 14, 2017 06:25
-
-
Save muhfaris/8fc1d2dd786ce0020d8a09a80d15bb89 to your computer and use it in GitHub Desktop.
Zen cart Before add code new banner to other page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Check in Database | |
select * from configuration where configuration_key LIKE 'SHOW_BANNERS_GROUP_SET%'; | |
- Insert new _BANNER_GROUP_ , before you must identification group_id | |
INSERT INTO `yourdatabasename`.`configuration` ( | |
`configuration_id` , | |
`configuration_title` , | |
`configuration_key` , | |
`configuration_value` , | |
`configuration_description` , | |
`configuration_group_id` , | |
`sort_order` , | |
`last_modified` , | |
`date_added` , | |
`use_function` , | |
`set_function` | |
) | |
VALUES ( | |
NULL , 'Banner Display Groups -Slider Images', 'SHOW_BANNERS_GROUP_SET9', '', 'It will show images in Slider', '19', '75' , | |
NULL , '0001-01-01 00:00:00', NULL , NULL | |
); | |
_nb: jika sukses di menu layout setting muncul menu baru | |
- Creat new banner in Tool - Banner Manager, creat new category | |
- assign new category to _BANNER_GROUP setting | |
_referensi : | |
_http://www.infotokri.in/2013/02/banner-management-in-zencart-adding.html | |
_https://www.zen-cart.com/showthread.php?43735-How-To-Add-more-banner-display-groups | |
_https://www.zen-cart.com/showthread.php?211490-Banner-Manager/page3&highlight=BANNERS_GROUP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment