php - Opencart 2.0 - add product direct to cart -
i have installed opencart ver. 2.1.0.1
what want add products directly landing pages (basic html/css) cart of opencart.
earlier opencart version 1.5, using tweak , working fine.
ideally adding ?route=checkout/cart&add_product=1&product_id[]=170&qty[]=1 after domain name, add product cart.
any opencart expert highly appreciated.
in opencart v2 , upwards change has been made follows:
the link changed to
onclick="cart.add('<?php echo $product['product_id']; ?>', '<?php echo $product['minimum']; ?>');"
where onclick event triggers add cart function parameters
- product id - unique identifier of product.
- minimum - refers quantity being ordered.
Comments
Post a Comment