Do we need to add custom validation just before order placement? Is it possible? Yes, absolutely; Magento 2 is flexible and provides a mechanism to add our custom validation before placing orders. We often need […]
Category: Magento 2
Magento 2: PayPal gateway has rejected request. The totals of the cart item amounts do not match order amounts
PayPal gateway has rejected the request.? Have you added custom charges or tax to the total? If yes, then let’s fix it. First, let’s talk about what Paypal is. Paypal is an international payment method […]
Magento 2: Add Block Before Add To Cart On Product Page
The product page is also the most crucial, like the checkout page. Customers see a detailed view of each product, including reviews. Hence, this page must be handled carefully to convert the cart into a […]
Magento 2: Access Configuration Value in JavaScript at Checkout
We have accessed the configuration value in the JavaScript widget. In this post, we will access the configuration value in JavaScript at checkout. As in the last post, if we pass value to a JS widget, […]
Magento 2: How to pass value to JS
We will pass the dynamic configuration values to JS in this post. We can pass values to the configuration using checkoutConfig in checkout. However, we can also pass values to the jQuery widget from the […]
Magento 2: Create Dynamic Row System Configuration
In this post, we will create a dynamic row system configuration. This is because we often require dynamic values for rows. For example, we usually save rows as individual fields in separate tables or keep […]
Mageto2: The Indexer Configuration
We have created a custom indexer. Now, let’s understand the configuration to create a custom indexer. We have taken care of the following points while creating a custom indexer. Mageto2: The Indexer Configuration Indexer.xml ATTRIBUTE […]
Magento 2: How to create a custom indexer?
Let’s create a custom indexer in Magento 2. We have seen how we can reindex programmatically in Magento 2. We have also invalidated the indexer programmatically. Now, We are going to create a custom indexer […]
Magento 2: How to store variables in the flag table?
How to store variables in the flag table Magento parts involve this table as key-value storage for any information if the extra creation table is above. As a Magento developer, we prefer to store data […]
Magento2: How to refresh the shipping method using JS?
Let’s refresh the shipping method using JS. We have restored the total section in https://sbdevblog.com/magento-2-how-to-update-the-total-using-js/ Very often, we need to update the shipping method in the cart and checkout page using JS. For example, on applying a custom discount or […]
