Virtuemart 2.0.20显示购物车没有重定向到购物车页面

时间:2013-05-20 11:06:54

标签: joomla virtuemart

我使用的是virtity 2.0.20的新版本。在产品详细信息页面上,当我点击显示购物车时,它将不会重新切换到购物车页面。它正在重定向到某个索引页面。它在show cart链接上显示的链接是'index.php / component / virtuemart / cart?Itemid = 0'。请告诉我如何重定向到购物车页面。

提前完成

1 个答案:

答案 0 :(得分:0)

将此处放在您的addtocart按钮

      <input type="hidden" class="pname" value="<?php echo $product->product_name ?>" />
      <input type="hidden" name="option" value="com_virtuemart" />
      <input type="hidden" name="view" value="cart" />
      <input type="hidden" name="virtuemart_product_id[]" value="<?php echo $product->virtuemart_product_id ?>" />
      <input type="hidden" name="virtuemart_manufacturer_id" value="<?php echo $product->virtuemart_manufacturer_id ?>" />
      <input type="hidden" name="virtuemart_category_id[]" value="<?php echo $product->virtuemart_category_id ?>" />