服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > zencart教程 >

实现zencart后台设置网站主题颜色

时间:2015-07-09 17:54来源:未知 作者:最模板 点击:
1.在SQL安装工具执行 INSERT INTO configuration VALUES (NULL,设置网站主题颜色,WEBMAINCOLOR_CONFIG_STATUS,white,请选择需要的主题颜色(默 认:white),31,20,NULL, now(),NULL,zen_cfg_select_option(array(white, black, red,

1.在SQL安装工具执行

INSERT INTO configuration VALUES (NULL,'设置网站主题颜色','WEBMAINCOLOR_CONFIG_STATUS','white','请选择需要的主题颜色(默
认:white)','31','20',NULL, now(),NULL,'zen_cfg_select_option(array("white", "black", "red", "orange", "yellow", "green", "cyan", "blue",
"purple"),');

其中的31是已经安装的批量商品管理插件的设置界面configuration_group_id的值,20是为WEBMAINCOLOR_CONFIG_STATUS该常量指定的sort_order 值(可以随便设置),执行SQL语句后,在后台 商店设置->批量商品管理 界面就可以看到设置网站主题颜色的选项。

2.在模板的stysheet.css文件中添加:

.webmaincolor_config_white{background:white;}
.webmaincolor_config_black{background:black;}
.webmaincolor_config_red{background:red;}
.webmaincolor_config_orange{background:orange;}
.webmaincolor_config_yellow{background:yellow;}
.webmaincolor_config_green{background:green;}
.webmaincolor_config_cyan{background:cyan;}
.webmaincolor_config_blue{background:#224986;}
.webmaincolor_config_purple{background:purple;}

3.对所有需要引用该颜色的div添加该class即可实现颜色变换:

<div class="main_menu_panel webmaincolor_config_<?php echoWEBMAINCOLOR_CONFIG_STATUS;?>">

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------