我想在virtmart中申请优惠券。是否可以直接使用查询字符串?
我设法在PHP中使用以下语句添加产品:
header('Location: http://www.url.es/index.php?option=com_virtuemart&view=cart&task=add&virtuemart_product_id[]=25&virtuemart_category_id[]=70&quantity[]=1');
答案 0 :(得分:0)
您可以使用此网址:
index.php?option=com_virtuemart&controller=cart&task=setcoupon&view=cart&coupon_code=COUPON_CODE
我已经用virtuemart 3.0.18进行了测试,它运行得很好。
您可以通过检查表单发布的输入字段来查看如何创建此网址:
components/com_virtuemart/views/cart/tmpl/default_coupon.php
希望这有帮助