我的客户希望标题中的迷你购物车显示在所有页面上,即使是那些不包含在商店中的页面。将 Opencart 安装在子文件夹中... www.mypage.com/shop
网页的其余部分在 www.mypage.com/index.php 等等....
可以做到吗,有人有解决办法吗?
任何帮助表示赞赏!
最简单的方法是对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
});