Need to rename the standard header menu and my account menu tabs name using extension Create the extension normal way. In the entry point we need to extend the views. In our case Menutreeview and Header menu myaccount menu. Compare each children and if the id matches get the tab need to rename and rename… Continue reading Rename the tabs in header menu and myaccount menu
Author: Joseph Ronald
Custom registration form
Need to create custom registration form using extension and pass all the input details to backend and using that details need to create lead or customer First of all, create the extension and in the template, section complete the creation and styling. On the submit button add the trigger to pass the details to the… Continue reading Custom registration form
Hide tab from my account section
Need to hide any tabs from my account menu using the extension To achieve this we need to extend the MenuTreeView, so we can get all the child tabs and need to compare each child with some unique ids. if it matches with our required tab, hide the same. Here we compare children.id whether returns… Continue reading Hide tab from my account section
Add a new sort option in wish list page
Need to add a new sort option in the wishlist for that first need to add options using extending the product detail view in entry point On the script side get option add our customised formula for sorting the same
Different Enquiry forms based on logged in condition
Need to display template depending on customer login and log out. In the view section, we can define a profile model to get customer weather logged in or not. and pass the flag through it. on the template if it is true pass one template , Otherwise show another template. On the template need to… Continue reading Different Enquiry forms based on logged in condition
Shopify Tutorial
CREATE A SHOPIFY ACCOUNT Go to www.shopify.com/signup to start a 14-day free trial. Enter your email, name, and store name (you can change your store name later if needed). After you select Create your store, you’ll see a “Tell us a little about yourself” page. Your answers here only affect the advice emails Shopify sends you in their… Continue reading Shopify Tutorial
Shopify Basics (Oneweld)
THEME The Theme Store offers a wide variety of themes that you can add to your online store. It includes free themes and paid themes. Galleria is the theme suggested for the client and they were comfortable with that theme. some of the Front end UI mentioned below Theme Features Vertical Slideshow Display images or… Continue reading Shopify Basics (Oneweld)
Create a Form value Passed to the Service controller
Need to create a form and pass all the details to the NetSuite side and create a lead using passed details First of all, create a form and add a click function in submit button and while submitting add a function for passing the details to the backend. Submitting event Submitting function This passes the… Continue reading Create a Form value Passed to the Service controller
Create a new form in Myaccount New Tab.
We need to create a new form and place it into my account tab For creating a new tab in myaccount we have to get Myaccountmenu component in the entry point of javascript.Then need to create JSON array for adding the new tab with the required parameter. If we need to open new page for… Continue reading Create a new form in Myaccount New Tab.
Display the image on PDP page.
display any image inside PDP section If we need to show any image in pdp, we have to create a view first The next step is template creation for the image. simply add an image using <img> and add needed changes. at last we can call the view anywhere in the PDP theme file