Zen cart很容易定制的
打开\includes\modules\pages\product_info\main_template_vars.php
找到
p.products_quantity_order_max,
修改为
p.products_quantity_order_max, pd.products_viewed,
找到
$products_description = $product_info->fields['products_description'];
在后面加上
$products_viewed = $product_info->fields['products_viewed'];
打开模板文件 \includes\templates\Your_Template\templates\tpl_product_info_display.php (如果没有,从缺省的template_default下的相应目录中复制)
在适当的位置显示出查看次数 $products_viewed 就行了。例如:
找到
<!--eof Product date added/available -->
在后面加上
<?php
echo "商品查看次数:" . $products_viewed;
?>