Cloudways server configuration with Magento2

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

Published
Categorized as Magento

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.

Published
Categorized as Magento

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

Published
Categorized as Magento

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.

Published
Categorized as Magento

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

Published
Categorized as Magento