zencart批量表新增分类点击不进去的原因是安装了管理员权限分级模块,只要运行以下语句即可。 INSERT INTO `admin_allowed_categories` (`categories_id`, `admin_id`) VALUES(10175, 1); 10175表示分类ID,1表示[详细>>]
分类:zencart教程时间:2015-07-14
将下面代码中的 新增商店变量1, ADDS_NAME_1, 新增商店变量1的值, 新增商店变量1描述换成你需要新增的内容即可。 INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`,[详细>>]
分类:zencart教程时间:2015-07-14
includes/templates/模板/sideboxes/tpl_categories.php $content .= a class=.$new_style. href= . zen_href_link(FILENAME_DEFAULT, $box_categories_array [ $i ][path]) . ; 替换成 $content .= a class=. $new_style . . str_replace ( array (=),[详细>>]
分类:zencart教程时间:2015-07-14
Zen Cart 138 在PHP5.3环境下出现的Fatal error: Cannot redeclare date_diff() in includes/functions/functions_general.php错误的解决方法 原因是在这个文件中已存在函数:date_diff()了,此时,我们需要做到与旧[详细>>]
分类:zencart教程时间:2015-07-14
后台管理中选项名称和选项内容和属性控制出现以下错误的解决办法 WARNING: An Error occurred, please refresh the page and try again zen cart v1.5.1 的一个bug,重新下载更新的zencart安装包,然后取出以[详细>>]
分类:zencart教程时间:2015-07-14
includes\functions\html_output.php 大概323行的zenCssButton函数 function zenCssButton( $image = , $text , $type , $sec_class = , $parameters = ) { // automatic width setting depending on the number of characters $min_width = 80; // thi[详细>>]
分类:zencart教程时间:2015-07-14
zencart新增分类字段步骤 1.categories表新增字段related_categories、related_products ALTER TABLE `categories` ADD `related_categories` VARCHAR ( 255 ) NOT NULL , ADD `related_products` VARCHAR ( 255 ) NOT NULL ; 2.修改admin\ca[详细>>]
分类:zencart教程时间:2015-07-14
1.屏蔽左栏:打开模板目录下的tpl_main_page.php文件,找到以下代码 if (! isset ( $flag_disable_left ) || ! $flag_disable_left ) { 在以上代码前面一行,有选择的加入以下代码即可。 if ( $current_page_ba[详细>>]
分类:zencart教程时间:2015-07-14
zencart批量删除无图片产品,将以下代码保存为remove_products.php,放到网站根目录运行即可,操作前请先备份数据库。 ? php require (includes/application_top.php ); $listing_sql = select * from .TABLE_PROD[详细>>]
分类:zencart教程时间:2015-07-14
首先,用其他浏览器检查zencart商店,最好在另一台电脑测试。也许是缓冲/ session问题,刷新缓冲或者让session到期就可以解决了。 然后,检查所有的货币,在管理- 本地化- 货币 a)确保[详细>>]
分类:zencart教程时间:2015-07-14
[详细>>]
分类:zencart教程时间:2015-07-13
[详细>>]
分类:zencart教程时间:2015-07-13