搜档网
当前位置:搜档网 › 如何给Zen Cart中给产品添加新字段

如何给Zen Cart中给产品添加新字段

1、首先考虑你要添加一个什么样的属性到你的产品,在这个例子中添加两个属性:[guarantee-time]和[color]。 2、在数据库管理界面(如:phpmyadmin)中找到表[products],或者表的前缀加[products],为这个表添加两个字段: [products_guarantee] 和[products_color] : ALTER TABLE `zencart_products` ADD `products_guarantee` INT NOT NULL , ADD `products_color` VARCHAR( 32 ) NOT NULL; 3、编辑文件 [collect_info.php](在目录/admin/includes/modules/product/下) (1)在最开始的地方有一个变量参数设置,添加你的字段到它们的最后: 'products_guarantee' => '0', 'products_color' => '' ); (2)在下边有一个数据库查询: set [$product = $db->Execute("...] 添加你的字段在 [from ...] 部分的前边,并且字段前添加[p.]: select ......., p.products_guarantee, p.products_color from .... (3)现在添加输入框到产品表单中(在450行附近,具体位置自己看情况定): Guarantee Time (in months) products_guarantee, zen_set_field_length(TABLE_PRODUCTS, 'products_guarantee')); ?> Color products_color, zen_set_field_length(TABLE_PRODUCTS, 'products_color')); ?> 4、编辑文件 [preview_info.php] (在目录 /admin/includes/modules/product/下) 在第10行左右,找到变量[$product]的定义. 像上边3.2中的一样添加查询字段: select ......., p.products_guarantee, p.products_color from .... 5、编辑 [update_product.php] (在目录/admin/includes/modules/下) 在20行左右找到$sql_data_array变量那个的定义. 在最后一行的[);] 前边添加新字段. 查看源代码打印? $sql_data_array = .......... 'products_guarantee' => zen_db_prepare_input($_POST['products_guarantee']), 'products_color' => zen_db_prepare_input($_POST['products_color']) ); 6、编辑 [main_template_vars.php] (在目录/includes/modules/pages/product_info/下) 在第40行左右找到变量[$sql]的定义,像3.2中一样添加新字段的查询: select ......., p.products_guarantee, p.products_color from .... 7、最后一步:在产品信息中显示。编辑[tpl_product_info_display.php'](在目录/includes/templates/你的模板/templates /下) 你可以把下边的代码添加到你认为合适的显示位置 echo $product_info->fields['products_guarantee']; echo $product_info->fields['products_color']; OK,希望你一切顺利!我已经在我的网店下添加了一个字段,用于保存该商品在淘宝店的地址,如果在商品发布时,添加了淘宝地址,在页面上就会显示一行文字,并连接到淘宝店的地址。 <转>https://www.sodocs.net/doc/aa28285.html,/php/zencart-add-new-field/

相关主题