如何检查virtmart购物车是否空

时间:2013-10-31 09:37:16

标签: php joomla virtuemart

我有一个检查virt-mart购物车的问题,如果购物车是空的,那么页面会重定向到我的链接,例如联系页面,文章。

例如客户点击"立即订购"按钮但购物车为空,然后重定向到联系页面

请帮帮我

1 个答案:

答案 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

希望它的帮助..