-
Call: +91-9462016902
-
Email: [email protected]
Streamline Your Order Management with Auto Cancel Order Extension
- Gaurav Khatri
- March 17, 2023
- No Comments
Managing orders can be a time-consuming task for any online business. From tracking orders to processing payments and fulfilling deliveries, there are numerous tasks involved in order management. However, not all orders are useful or required, and cancelling them manually can be an additional hassle for administrators. This is where the Auto Cancel Order extension […]
Magento 2 Back in Stock Notification: How to Activate It and Boost Your Sales
- Gaurav Khatri
- March 10, 2023
- No Comments
Are you tired of losing potential customers because your products are out of stock? Do you want to keep your customers updated on the availability of your products? Look no further! Magento 2 has a powerful back in stock notification feature that can help you boost your sales and improve customer satisfaction. In this blog […]
How to add customer attribute in Magento 2
- Gaurav Khatri
- March 3, 2023
- No Comments
Are you using Magento 2 (Adobe Commerce) as your eCommerce platform and wondering how to add customer attributes to your store? This guide will walk you through the steps to add a new customer attribute in Magento 2. Step 1: Create a new customer attribute To add a new customer attribute in Magento 2 (Adobe […]
How to get current quote in Magento 2
- WebbyTroops
- March 15, 2022
- No Comments
While working many times we face the requirement to load the current quote of the customer to achieve needed functionality. We can get the current quote of the customer easily by loading the checkout session class \Magento\Checkout\Model\Session. Further we need to call getQuote() method of this class.. Example below will help you to achieve this: […]
How to get current logged in customer data in Magento 2
- WebbyTroops
- March 9, 2022
- No Comments
While working on Magento several times we need to get the details of current logged in customer. It can easily be checked whether the customer is logged in or not. If the customer is logged in then we can retrieve its data and use it for our functionality implementation. Magento uses session to store current […]
How to get customer by ID in Magento 2
- WebbyTroops
- March 9, 2022
- No Comments
In Magento 2 there are multiple ways to load customer data by ID. The code snippets below will help you to achieve it. Load Customer using Model Customer can be loaded using the Magento\Customer\Model\Customer model. We will use the factory of this model to get the new instance of the customer. We are injecting this […]
How To Get Customer Id From Bearer Token In Magento2 Rest API?
- WebbyTroops
- May 26, 2020
- No Comments
In REST API integration, we can retrieve customer token from calling /V1/integration/customer/token API. Later this token is passed as a bearer token in Postman or we can pass in the api_key text field on the top of the page in the user interface for swagger. Sometime we may need to get the customer id from […]