Hello Magento Friends,
Hope everything is groovy and fab at your end. Today I will help you to solve How to Prevent Adding Duplicate Product to Wishlist in Magento 2.
In default Magento 2, if the customer adds any product to the wishlist it also allows repetitive products to be added to the wishlist. The Magento 2 store admin can still delete the duplicate products in the wishlist and also prevent adding the same. The customers can easily manage their wishlist by preventing duplicate items to be added.
So, let’s get started with the steps on How to Prevent Adding Duplicate Product to Wishlist in Magento 2.
Step 1: Firstly, go to the below path
app\code\Vendor\Extension\etc\events.xml
Now, add the below code
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd"> <event name="controller_action_predispatch_wishlist_index_add"> <observer name="wishlist_index_add_before" instance="Vendor\Extension\Observer\WishlistItemBeforeAdd" /> </event> </config>
Step 2: Next, move to the below path
app\code\Vendor\Extension\Observer\WishlistItemBeforeAdd.php
And add the code as mentioned below
<?php namespace Vendor\Extension\Observer; use Magento\Framework\Event\ObserverInterface; use Magento\Framework\Exception\LocalizedException; class WishlistItemBeforeAdd implements ObserverInterface { protected $customerSession; protected $wishlist; public function __construct( \Magento\Customer\Model\Session $customerSession, \Magento\Wishlist\Model\Wishlist $wishlist) { $this->customerSession = $customerSession; $this->wishlist = $wishlist; } public function execute(\Magento\Framework\Event\Observer $observer) { $customer_id = $this->customerSession->getCustomer()->getId(); $currentProduct_id = $observer->getRequest()->getParam('product'); if($customer_id) { $currentCustomerWishlist = $this->wishlist->loadByCustomerId($customer_id); $wishlistItems = $currentCustomerWishlist->getItemCollection(); foreach ($wishlistItems as $wishlistItem) { if ($wishlistItem->getProductId() == $currentProduct_id) { $wishlistItem->delete(); } } } return $observer; } }
Hopefully, all are able to Prevent Adding Duplicate Product to Wishlist in Magento 2. For any difficulty, while executing the code, do let me know in the comment sections below. Ensure you share the article with your Magento colleagues and on your social media platforms.
Stay in touch for future updates!
Happy Coding!
Hello Magento Friends, In Magento 2, the checkout process allows customers to choose multiple shipping…
If you are a Shopify admin, using a Shopify Balance Account for your business revenue…
Running an eCommerce business can be incredibly demanding, leaving entrepreneurs little time to focus on…
Generating image thumbnails is a common requirement in web applications, especially when handling media-heavy content.…
In today’s digital landscape, web application security is paramount. As a powerful PHP framework, Laravel…
October was an exciting month for MageComp! From significant updates across our Magento 2 extension…