How To

How to Get All Active Catalog Rules Collection using Root Script in Magento 2?

Hello Magento Friends,

In today’s blog, I will explain How to Get All Active Catalog Rules Collection using Root Script in Magento 2.

Magento 2, a powerful and versatile e-commerce platform, allows you to manage and apply catalog rules to control the pricing and visibility of products on your online store. Learn – How to Create a Catalog Price Rule in Magento 2.

If you need to retrieve all active catalog rules programmatically, you can create a root script to fetch and display this information. In this blog post, we’ll guide you through the process step by step.

Steps to Get All Active Catalog Rules Collection using Root Script in Magento 2:

Step 1: Create CatalogruleCollection.php file in the Magento root path and then add the below code.

<?php
 
use Magento\Framework\AppInterface;
 
try {
   require __DIR__ . '/../app/bootstrap.php';
} catch (\Exception $e) {
    echo 'Autoload error: ' . $e->getMessage();
    exit(1);
}

try
{
  $bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
 $objectManager = $bootstrap->getObjectManager();
 $appState = $objectManager->get('Magento\Framework\App\State');
 $appState->setAreaCode('frontend');
  
 $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
 $ruleCollectionFactory = $objectManager->create('\Magento\CatalogRule\Model\ResourceModel\Rule\CollectionFactory')->create(); 
 $catalogActiveRule = $ruleCollectionFactory->addFieldToFilter('is_active', 1);
        foreach($catalogActiveRule as $rule) {
            echo "<pre>";
            print_r($rule ->getData());
            echo "</pre>";
 }  
  }
 
catch(\Exception $e){ 
    print_r($e->getMessage());
}

Step 2: After adding the above code, run the URL below to check whether the Catalog Rules Data was retrieved.

https://yourdomain/pub/CatalogruleCollection.php/ 

Conclusion:

Creating a root script to retrieve all active catalog rules in Magento 2 is a straightforward process. This script provides a starting point, and you can customize it based on your specific requirements. Understanding the structure of the script and the Magento 2 components involved will empower you to perform more advanced operations in your e-commerce endeavors.

Happy Coding!

Click to rate this post!
[Total: 0 Average: 0]
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

How to Integrate and Use MongoDB with Laravel?

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

1 day ago

NodeJS | Callback Function

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

2 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…

4 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…

6 days 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…

7 days ago

Best Beginners Guide to Shopify Balance Account

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

7 days ago