Howdy Magento Folks?,
Welcome to our Magento 2 How to Blog Series. What are we going to do today? Today we are going to learn How To Remove Applied Cart Rules in Magento 2 programmatically. In case you haven’t caught our latest published article on How To Add JS File in Frontend for All Pages in Magento 2. Let’s start learning?.
Contents
Introduction:
Basically, when there is a scenario to create order programmatically in your Magento 2 store then there are many possibilities. Sometimes the imported order discount is not applied but as stated in Magento cart rules the discount must be applied. To overcome this situation admin need to just apply some cart rules for that specific cart order and after that, the discount will be applied successfully. Many times because of some difference between the total at checkout the problems are faced and to overcome this situation go through the easy solution given below.
If you are in need of creating order programmatically then look at this article How to Create Order Programmatically in Magento 2. Build your advanced checkout page now with the help of MageComp’s Magento 2 Checkout Success Page extension.
Steps to Remove Programmatically Applied Cart Rules in Magento 2:
Step 1: Firstly, you need to add di.xml in the following path.
app\code\Vendor\Extension\etc\di.xml
1 2 3 4 5 6 7 |
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> <type name="Magento\SalesRule\Model\RulesApplier"> <plugin name="remove_cart_rule" type="Vendor\Extension\Plugin\SalesRule\Model\RulesApplier"/> </type> </config> |
Step 2: Now, add RulesApplier.php file in following path:
app\code\Vendor\Extension\Plugin\SalesRule\Model\RulesApplier.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<?php namespace Vendor\Extension\Plugin\SalesRule\Model; class RulesApplier { private $rules; public function __construct( \Magento\SalesRule\Model\ResourceModel\Rule\CollectionFactory $rulesFactory ) { $this->ruleCollection = $rulesFactory; } public function aroundApplyRules( \Magento\SalesRule\Model\RulesApplier $subject, \Closure $proceed, $item, $rules, $skipValidation, $couponCode ) { $rules = $this->ruleCollection->create()->addFieldToFilter("rule_id", ["eq"=> ""]); $result = $proceed($item, $rules, $skipValidation, $couponCode); return $result; } } |
That’s it you will be easily able to Remove Applied Cart Rules.
Final Words:
I would expect the solution given in the above solution was helpful for all and with that let’s conclude our blog. If you find any concerns regarding this article then do connect with our Support Team. But in the meantime, share the article with your Magento pals for helping them to get out of this problem. As always suggestions are always welcomed at MageComp write down in the comment section below.
Happy Coding?
Why “aroundPlugin” to change a function parameter?
Why not “beforePlugin”?
Yes you can use Before Plugin as well here, but we have further requirement that’s why we used around plugin.
hii How Can Remove As per Catalog Rule Apply On Current Product When Product
Add Cart.
For that, you need to identify the relevant function and then create those function plugin.
If you want to disable multiple rules you can do
$ruleIds = array(1, 5, 9); //Rule Ids to remove
$rules = $this->ruleCollection->create()->addFieldToFilter(‘rule_id’, [‘in’ => $ruleIds]);
Yes, You need to do the code according to your requirements.
Thank You