How To

How to Remove cart item Automatically after 30 Minutes in Magento 2

Hello, Magento Fans,

Last time we learned how you can show the list of all categories at the sidebar for Magento 2.

Today we are going to learn about how you can remove the item from the cart automatically after 30 minutes.

In the rising world of Ecommerce, the work of developers is to make things fast, smart, and easy with their coding knowledge. As developers, we are destined to play around with numerous codes and numbers to save time and efforts of our clients and end-users. To stay ahead in the game, Ecommerce store owners have become demanding and want to add tons of new features and functions to their store.

While doing one project, we came across the requirement of the client to remove the cart item automatically after 30 Minutes. As a developer, we regularly come across such situations, so we thought of penning it down on our blog page.

Using the below codes, you can remove cart items automatically after 30minutes.

Step 1: First, we need to create a “Registration.php” file inside our extension at the following path..
app\code\Vendor\Extension

<?php
\Magento\Framework\Component\ComponentRegistrar::register(
    \Magento\Framework\Component\ComponentRegistrar::MODULE,
    'Vendor_Extension',
    __DIR__
);

Step 2: After that, we need to create a “Module.xml” file inside extension etc folder. app\code\Vendor\Extension\etc

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
    <module name="Vendor_Extension" setup_version="1.0.0" schema_version="1.0.0">
    </module>
</config>

Step 3: After that, we need to create “crontab.xml” file inside extension etc folder. app\code\Vendor\Extension\etc

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/crontab.xsd">
    <group id="default">
        <job name="removecart" instance="Vendor\Extension\Cron\Removecart" method="getItemData">
            <schedule>* * * * *</schedule>
        </job>
    </group>
</config>

Step 4: Lastly, Create the “Removecart.php” file inside the Cron folder of extension. app\code\Vendor\Extension\Cron

<?php
namespace Vendor\Extension\Cron;

class Removecart {

    /**
     * @var \Magento\Quote\Model\QuoteRepository
     */    protected $quoteRepository;

    /**
     * @var \Magento\Quote\Model\ResourceModel\Quote\CollectionFactory
     */    protected $quoteCollectionFactory;

    public function __construct(
        \Magento\Quote\Model\ResourceModel\Quote\CollectionFactory $quoteCollectionFactory,
        \Magento\Quote\Model\QuoteRepository $quoteRepository
    ) {

        $this->quoteCollectionFactory = $quoteCollectionFactory;
        $this->quoteRepository = $quoteRepository;
    }
    public function getItemData()
    {
        $fromTime = new \DateTime('now', new \DateTimezone('UTC'));
        $fromTime->sub(\DateInterval::createFromDateString('30 minutes'));

        $fromDate = $fromTime->format('Y-m-d H:i:s');
        $quoteCollection = $this->quoteCollectionFactory->create();

        $quoteCollection
            ->addFieldToFilter('created_at', ['lteq' => $fromDate]);

        if($quoteCollection->getSize() >0){
            foreach ($quoteCollection as $quote)
            {
                $quoteFullObject = $this->quoteRepository->get($quote->getId());
                $quoteFullObject->delete();
            }
        }


    }
}

If you have to execute this code on your site, then execute all codes in your root command. If you have executed all codes successfully, then run the below command in your command prompt.

php bin/magento cron:install

php bin/magento cron:run

Every 30 minutes, the cron is executed. If there is an item available in the cart, it will be then removed Automatically.

So, that was all for the day! With the help of these codes, you can successfully achieve the task of removing cart items automatically after every 30 minutes in Magneto 2. You are free to play around and customize these codes according to your needs of fetching data. If you face any issues while implementing, then contact our support team. We will be happy to help you.

Lastly, if you found this helpful, then let us know in the comments below. Also, don’t forget to share this with your Magento partners.

Click to rate this post!
[Total: 4 Average: 4.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.?

View Comments

  • what if I add an item in a cart now and again add item in a cart after 15 min, Then both will remove at a same time?

    • This will remove the cart after the given time from the first creation because when you add another item it will update only that updated_at field, not created_at.

  • Hello team,
    i am unable to get result using this line change
    $fromTime->sub(\DateInterval::createFromDateString('5 minutes'));
    is it working? or need to change some formate

Recent Posts

How to Add Tooltip in Checkout Shipping Field in Magento 2?

Hello Magento Friends, In today’s blog, I will explain How to Add Tooltip in Checkout…

3 days ago

How to Integrate and Use MongoDB with Laravel?

MongoDB is a popular NoSQL database that offers flexibility and scalability when handling modern web…

4 days ago

NodeJS | Callback Function

In NodeJS, callbacks empower developers to execute asynchronous operations like reading files, handling requests, and…

5 days ago

How to Show SKU in Order Summary in Magento 2?

Hello Magento Friends, In today’s blog, we will learn How to Show SKU in Order…

7 days ago

Best Colors to Use for CTA Buttons

The "Buy Now" and "Add to Cart" buttons serve as the primary call-to-action (CTA) elements…

1 week ago

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…

1 week ago