I'm using Magento 2 and I've noticed that on the related products block , on the product page , the add to cart button for the related products is actually a check box, and not a properly button.. is there any setting for that to be a properly button ?
-
Hi, i'm having the same issue. I was able to get the button added after changing $showCart = true. but how do i get rid of the checkbox?Mage Explorer– Mage Explorer2020年05月21日 00:54:42 +00:00Commented May 21, 2020 at 0:54
-
@KrisWen Change $canItemsAddToCart = $block->canItemsAddToCart(); to $canItemsAddToCart = false;MaddocksL– MaddocksL2020年06月17日 14:54:48 +00:00Commented Jun 17, 2020 at 14:54
-
@MaddocksL Thank you, i have resolved the issue.Mage Explorer– Mage Explorer2020年06月17日 21:16:52 +00:00Commented Jun 17, 2020 at 21:16
3 Answers 3
By default Magento, there is no setting option in Admin for Add to Cart button on the related products block. If we want to custom the related, upsell, crosssel and new product template, we should override this template vendor/magento/module-catalog/view/frontend/templates/product/list/items.phtml.
Change $showCart = true; in case - related product.
We can refer here: Related Products template customize
-
I was able to get the button added after changing $showCart = true. but how do i get rid of the checkbox?Mage Explorer– Mage Explorer2020年05月21日 00:55:45 +00:00Commented May 21, 2020 at 0:55
-
@KrisWen "$canItemsAddToCart = false;"00-BBB– 00-BBB2021年01月07日 11:48:30 +00:00Commented Jan 7, 2021 at 11:48
For displaying the Add To Cart button, edit the below-mentioned file
vendor/magento/module-catalog/view/frontend/templates/product/list/items.phtml
$showCart = true;
-
I was able to get the button added after changing $showCart = true. but how do i get rid of the checkbox?Mage Explorer– Mage Explorer2020年05月21日 00:55:56 +00:00Commented May 21, 2020 at 0:55
To remove the checkboxes (hilariously terrible UX choice! Having 'add to cart' checkboxes but then no 'add to cart' button visible?! So the user has to scroll back up and click the main product add to cart button to add a related product? Oh Magento... VOMIT 😅)
Set this in items.phtml:
$canItemsAddToCart = false;
Clear caches etc.