在zencart任意位置调用sideboxes

2,162 人次阅读
没有评论

共计 893 个字符,预计需要花费 3 分钟才能阅读完成。

在做zencart二次开发中,遇到一个问题,就是想在网站的任意地方调用sideboxes中的功能。于在在网上搜了一些资料,现分享给童学们。

比如现在要在页面里调用best_sellers.php

第 一步:修改:includes/modules/sideboxes/你的模板/search.php(如果上述路径下没有对应的实际文件 可以去 includes/modules/sideboxes/ 下复制一份过来,),删除或者注释掉 $title 和 $title_link 还有一个 require 。[php]

===============================

// $title_link = false;
require($template->get_template_dir(‘tpl_best_sellers.php’,DIR_WS_TEMPLATE, $current_page_base,’sideboxes’). ‘/tpl_best_sellers.php’);
//   $title =  BOX_HEADING_BESTSELLERS;
//  require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,’common’) . ‘/’ . $column_box_default);

==============================[/php]

第二步:在需要调用该sideboxes的地方添加上如下代码

[php]

=============================
<div><?php require($template->get_template_dir(‘tpl_best_sellers.php’,DIR_WS_TEMPLATE, $current_page_base,’sideboxes’). ‘/tpl_best_sellers.php’); echo $content;?></div>
=============================[/php]

打完收工:

正文完
 0