我有一个检查virt-mart购物车的问题,如果购物车是空的,那么页面会重定向到我的链接,例如联系页面,文章。
例如客户点击"立即订购"按钮但购物车为空,然后重定向到联系页面
请帮帮我
答案 0 :(得分:2)
试试这个,
$cart = VirtueMartCart::getCart();
if(sizeof($cart->products) > 0){
echo 'Cart have products';
}
else{
echo 'Your cart is empty';
}
可以使用
进行重定向$mainframe = JFactory::getApplication();
$mainframe->redirect('url','message','message type');//message type is message,warning,error etc
希望它的帮助..