There are few steps to complete magento configuration on the cloudways. Create server, purchase server with RAM and Internal Space Add application:- Install the application that required. After the installation, the application credentials and URL will be available. Able to configure the domain and Ip if required. Able to set up the email configuration on… Continue reading Cloudways server configuration with Magento2
Author: Arun T
Get the tire price of a product in magento2
For each product could be possible to set the price level in magento2. It is called tire prices. If need to get a product tire price based on the customer. We could use this method Here we are fetching the tire price based on the customer. Thank you.
The observer function on the new invoice is registered
If we have any kind of action needed to perform when an invoice is completed. So for this, we can use the observer function to identify the action of voice placed and we could implement the functionality based on that. For that create an events.xml Create an observer function here can perform the functionality to… Continue reading The observer function on the new invoice is registered
B2B and B2C website development proposal in magento2
The proposal covers the development scope of the magento2 website.
Check the saleable quantity of a product in Magento2
To check whether the item is available or not for the purchase. In Magento, the quantity is always remain the same when we purchase an item from the website. But the saleable quantity count will be reduced based on the purchase of the product. So in the case of checking the available quantity of a… Continue reading Check the saleable quantity of a product in Magento2
Stripe configuration on a custom page in Magento2
The stripe payment configuration on a custom page has been been done using a form method provided by skype.
price level settings in magento2
In Magento, the price level settings can be only done by the customer group pricing. Price levels are considered as customer groups and for each customer group, we will set the price. Also, each customer should be assigned to a customer group. Through this, the price level on the Netsuite will be integrated into Magento.… Continue reading price level settings in magento2
Create a proposal for the development of creating a field on the backend to manage the freight cost additional price
Proposal for the development of creating a custom filed on the backend to manage the freight cost additional cost. Please find the document. Thank you.
Disable Welcome Email after signup
When customer sign in need to disable the email notification send from the netsuite.For that create di.xml file Then create the plugin class EmailNotification { public function aroundNewAccount(\Magento\Customer\Model\EmailNotification $subject, \Closure $proceed) { return $subject; } } Through this we can disable the emails sent from magento when the customer is registered.
Change the submit payment button based on the payment in magento2
We don’t have any default method to change the payment button name based on the payment method. So we need to use a custom method for the same.For that, we could use the JS function to change the payment method name based on the payment method name selection.Magento_Checkout/web/js/view/payment/default.js On the selectPaymentMethod default function we have… Continue reading Change the submit payment button based on the payment in magento2