Netsuite – WooCommerce Integration Plugin

The NetSuite Integration for WooCommerce plugin syncs your orders, inventory, and customers.  Its features offer deep enhancement capabilities when you use it with advanced mappings like currencies, subsidiaries, shipping methods, custom forms, sales reps, and classes or any other NetSuite field with conditional mapping features. Also, provide an additional feature to sync inventory manually.  Features… Continue reading Netsuite – WooCommerce Integration Plugin

WooCommerce – Subscription

About WooCommerce and its specific Plugins WooCommerce is a free eCommerce software that makes it easy for selling products and services online and is developed as an extension of WordPress.There are literally thousands of WooCommerce specific plugins that you can use to extend its functionality to add features like: Booking Subscription Shipping Platform integrations Sales… Continue reading WooCommerce – Subscription

Differentiate OneWorld and Mid-market accounts for Scripts

While creating scripts for NetSuite OneWorld and Mid-market accounts, we can make use of the feature runtime.isFeatureInEffect(‘SUBSIDIARIES’)) returns true if Subsidiary is present and thereby denoting One World account. returns false if Subsidiary is absent and thereby denoting Mid-market account. runtime.isFeatureInEffect(‘MULTISUBSIDIARYCUSTOMER’)) returns true if Subsidiary is present and thereby denoting One World account. returns false… Continue reading Differentiate OneWorld and Mid-market accounts for Scripts

Activating DNS setup for free domain purchased from freenom.com

This can be done only after adding domain to the netsuite account and then we have to copy the CNAME generated while adding the domain: Sign in again into https://my.freenom.com/ Go to my domains section and there you can see your purchased domains. Click on the manage domain option. Type the www in the Name… Continue reading Activating DNS setup for free domain purchased from freenom.com

How to get step name on checkout page in magento 2?

You can use the Magento_Checkout/js/view/progress-bar component or Magento_Checkout/js/model/step-navigator componen (used by progress-bar) inside your custom block template/component. Using progress-bar: Using step-navigator: or:

Published
Categorized as Magento

How to add a new step in Checkout page

Step 1: Create the .js file implementing the view model.Create the checkout-login-step.js file under Mageplaza/HelloWorld/view/frontend/web/js/view directory.Basically, we need step_code, step_title, order and the condition that allows to display this step. Here is the code (Read code comment to get more info) define([‘ko’,‘uiComponent’,‘underscore’,‘Magento_Checkout/js/model/step-navigator’,‘Magento_Customer/js/model/customer’],function (ko,Component,_,stepNavigator,customer) {‘use strict’;/*** check-login – is the name of the component’s .html template*/return… Continue reading How to add a new step in Checkout page