When cloning new repository in git facing the issue as shown below Solution Run Git Bash as administrator. Change the directory to the folder we need to clone. Run the following command: git config –system core.longpaths true git config –global core.longpaths true
Author: Shyma T
Add PO, Comments, Expected delivery date, office hours in checkout page
We have to add some new fields on the checkout page. The requirement of the task is shown below. Update the checkout page by providing the following fields. Input field for adding Purchase order number. Input field for adding Comments during order process A static text field for displaying Office hours. Input field for adding… Continue reading Add PO, Comments, Expected delivery date, office hours in checkout page
Show only the Selected credit card on checkout
On the checkout page of the website the complete list of the credit card is displayed be default. Instead, we need to show only the selected credit card and hide all the unselected cards in the payment method section. In case customers need to update their selected card, provide a dropdown section, which shows the complete… Continue reading Show only the Selected credit card on checkout
Show only the Selected Billing/Shipping address on checkout
On the checkout page of the website the complete list of the address is displayed be default. Instead, we need to show only the selected address and hide all the unselected addresses in the address section. In case customers need to update their selected address, provide a dropdown section, which shows the complete list of addresses… Continue reading Show only the Selected Billing/Shipping address on checkout
Image gallery enhancement PDP
The PDP image gallery section is upgraded by adding the extra features mentioned below. The PDP’s main image have arrows to scroll the images. The main image is expanded and displayed on the popup when clicking on it. The main image shown on the website will be from the item record field “LARGE IMAGE 0”. … Continue reading Image gallery enhancement PDP
Create item JSON file
There are some loading issues in the PLP pages as we need to fetch the complete items to display it on the website. To avoid the loading, we can use the json of the items with required details. Make sure the Json should automatically update when we remove, edit or add new items. We can… Continue reading Create item JSON file
Proposal For Update in Image gallery Enhancement
Proposal Summary This proposal covers the update in the image gallery enhancement in the PDP page. Requirement The PDP image gallery section needs to be upgraded by adding the extra features mentioned below. The PDP’s main image needs to have arrows to scroll the images. The main image needs to be expanded and displayed on… Continue reading Proposal For Update in Image gallery Enhancement
Add manuals in PDP page
Requirement: The PDP page needs to have a new tab called “Manuals.” A Download button must appear beneath the tab. The manual(PDF) for that specific item should download upon clicking the button. To provide the PDF link, an item record custom field must be kept. The tab should only appear when the item record’s custom… Continue reading Add manuals in PDP page
User Event script to add 3% charge to the Invoice created.
We have to add additional charge (3% of total) to the total amount when we create invoice record. For that can use markup item. We have to add a markup item to the line items in the invoice with amount of 3% of total. The user event script will execute when invoice is created. /*… Continue reading User Event script to add 3% charge to the Invoice created.
Wrapped ribbon on product images
Using CSS we can display wrapped ribbon type badge on the product images. <div class=”facets-item-cell-grid”> <div class=”ribbon ribbon-top-left”><span>On Sale</span></div> </div> CSS .facets-item-cell-grid { position: relative; } .ribbon-top-left { top: -10px; left: -10px; } .facets-item-cell-table .ribbon-top-left { left: -15px; } .facets-item-cell-grid .ribbon-top-left { left: -13px; } .ribbon-top-left::before, .ribbon-top-left::after {… Continue reading Wrapped ribbon on product images