是否可以在Opencart目录外的网页上包含购物车?

时间:2013-10-15 20:00:43

标签: php jquery opencart

我的客户希望标题中的迷你购物车能够在所有页面上显示,即使是那些未包含在商店中的页面。在子文件夹中安装Opencart ... www.mypage.com/shop

其余网页位于www.mypage.com/index.php等等......

能否完成,有人有解决方案可以发布吗?

任何帮助表示赞赏!

1 个答案:

答案 0 :(得分:1)

最简单的方法是对module/cart控制器进行AJAX调用,这将显示返回到默认主题标题http://demo.opencart.com/的相同输出

$.get("http://website.com/shop/index.php?route=module/cart", function(html) {
    // do something with the `html` variable
});