How To

How to Prevent Adding Duplicate Product to Wishlist in Magento 2

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.

Steps 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;
   }  
}

Conclusion:

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!

Click to rate this post!
[Total: 8 Average: 5]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate ?️ Certified Magento Developer?‍?. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.?

Recent Posts

Magento 2: How to Save Custom Field Value to quote_address for Multi-Shipping Orders

Hello Magento Friends, In Magento 2, the checkout process allows customers to choose multiple shipping…

3 hours ago

Best Beginners Guide to Shopify Balance Account

If you are a Shopify admin, using a Shopify Balance Account for your business revenue…

3 hours ago

8 Best Social Login Apps for Shopify Store in 2024

Running an eCommerce business can be incredibly demanding, leaving entrepreneurs little time to focus on…

3 hours ago

Generating Thumbnails with Spatie Media Library in Laravel 11: A Step-by-Step Guide

Generating image thumbnails is a common requirement in web applications, especially when handling media-heavy content.…

1 day ago

Enhancing Web Application Security with Laravel’s Built-In Features

In today’s digital landscape, web application security is paramount. As a powerful PHP framework, Laravel…

2 days ago

Magento 2 Extensions Digest October 2024 (New Release & Updates)

October was an exciting month for MageComp! From significant updates across our Magento 2 extension…

2 days ago