Magento2 Add to Cart, Add to Wishlist & Email a Friend links
On any PHTML file, add the following content.
Add to Cart:
Add to Wishlist:
Email a Friend:
On any PHTML file, add the following content.
Add to Cart:
<form action="<?php echo $block->getAddToCartUrl($mainProduct); ?>" method="post"> <?php echo $block->getBlockHtml('formkey')?> <button type="submit" title="Add to Cart" class="action tocart primary"> <span><?php echo __('Order Now'); ?></span> </button> </form>
Add to Wishlist:
<div> <a href="#" data-post='<?php echo $this->helper('Magento\Wishlist\Helper\Data')->getAddParams($mainProduct) ?>' class="action towishlist" data-action="add-to-wishlist"><?php echo __('Add to favorites')?></a> </div>
Email a Friend:
<div> <a href="<?php /* @escapeNotVerified */ echo $this->helper('Magento\Catalog\Helper\Product')->getEmailToFriendUrl($mainProduct) ?>"> <?php /* @escapeNotVerified */ echo __('Share with your friends') ?></a> </div>
No comments:
Post a Comment