最近开发了后台订单自动提示功能,后台订单页浏览器打开后,新订单产生时,页面弹出提示框,同时响起提示音乐。此插件适合对订单及时响应要求比较高的网站,例如 快餐。 效果如下图
prestashop 1.3.x 推广客插件
功能说明:
1. 与客户账号共享账号;
2. 后台对应 affiliate Tab ;
3. 单独设置每个推广员佣金比例;
4.根据业绩提高或者降低推广客佣金比;
5.后台显示每笔推广生成订单(支付与未支付);
6. 加入推广后,显示推广链接,推广佣金比, 推广成功订单金额 ,提成金额,提成支付状态。
之前在一个论坛里回复过这个问题,最近又有人咨询这个问题。我想想还是写下来分享给做模板的前端攻城师。
prestashop默认版本产品相关页 breadcrumb最后的节点是文本,没有任何html标签包裹。 加上标签后就可以写css样式修饰了。
1. 打开controllers/front/ProductController.php;
2. 查找到 protected function assignCategory() 大约在436行;
3.将代码 修改为;
protected function assignCategory()
{
// Assign category to the template
if ($this->category !== false && Validate::isLoadedObject($this->category))
{
$this->context->smarty->assign(array(
‘path’ => Tools::getPath($this->category->id, ‘<span “nav_last”>’.$this->product->name.'</span>’, true),
‘category’ => $this->category,
‘subCategories’ => $this->category->getSubCategories($this->context->language->id, true),
‘id_category_current’ => (int)$this->category->id,
‘id_category_parent’ => (int)$this->category->id_parent,
‘return_category_name’ => Tools::safeOutput($this->category->name)
));
}
else
$this->context->smarty->assign(‘path’, Tools::getPath((int)$this->product->id_category_default, ‘<span class=”nav_last”>’.$this->product->name.'</span>’));
$this->context->smarty->assign(‘categories’, Category::getHomeCategories($this->context->language->id));
$this->context->smarty->assign(array(‘HOOK_PRODUCT_FOOTER’ => Hook::exec(‘displayFooterProduct’, array(‘product’ => $this->product, ‘category’ => $this->category))));
}
很多人想用prestashop打造属于自己的产品宣传站,想把cart相关的东西屏蔽或者去除。
其实这仅仅需要后台一个设置就可以轻松做到,如下图