a return authorization request is not submitted if the invoice status is set to Approved and there is a gift certificate included in the order. This error message appears on Commerce websites affected by this problem: “Gift Certificate From, Recipient Name, and Recipient Email are required.”Create the Override File:
Author: Guna Murugesan
Cannot Disable Default Credit Card
customers cannot disable the Make this my default credit card option. This issue occurs when a customer has only one credit card set up as their payment method. In this case, your Commerce website should display a message to inform the customer that a default payment method is required and so their single credit card must remain… Continue reading Cannot Disable Default Credit Card
Quantity Pricing Displayed in Web Store Even When “Require Login for Pricing” is Enabled
In some implementations of the Kilimanjaro, Vinson, and Elbrus releases of SuiteCommerce Advanced, quantity pricing displays in the web store even when Require Login for Pricing is enabled. Step 1: Extend QuantityPricing.View.js Create an extensions directory to store your custom module. Depending on your implementation, this directory might already exist. Within this directory, create a custom module… Continue reading Quantity Pricing Displayed in Web Store Even When “Require Login for Pricing” is Enabled
how to create a function to the focus event. The focus event occurs (display a message regarding the text field) when the field gets focus.
The focus event occurs when an element gets focus (when selected by a mouse click or by “tab-navigating” to it). The focus() method triggers the focus event, or attaches a function to run when a focus event occurs. Tip: This method is often used together with the Blur() method. HTML Code : CSS Code: Copy JavaScript Code :
How to get the selected value and currently selected text of a dropdown box using jQuery
How to convert the checkbox to a button with not changing the checkbox functionality
For this as example of checkbox is sometimes worked as toggle function but in the button it will not happen so for that we need to update the checkbox to button without changing the functionality of checkbox .
Change Thumbnail Images Based on Color Refinement on a Product List Page
By default, the images shown for items on a product list page (PLP) will be whatever is the item’s default. This is fine in most cases, but what if a shopper refines by a color? Shouldn’t a search for, say, red dresses show images of red dresses, rather than just the default? This article will… Continue reading Change Thumbnail Images Based on Color Refinement on a Product List Page
How to Add personalised image url as pdf in sales order.
When a sales order is created if the item contains a personalized image then the item’s personalized image pdf format should be saved in the sales order. Create a transaction line field in the sales order item line for saving the image in pdf format.here created a new transaction field called IMAGE PDF URL.
Stick a Button to the Top of a Page
A sticky button is one that stays at the top of the page as a user scrolls down. They are a useful design features when you are designing a page that will have a lot of vertical content but you want to users to be able to quickly find the primary call-to-action button. For example,… Continue reading Stick a Button to the Top of a Page
SyntaxError: missing : after property id
The JavaScript exception “missing : after property id” occurs when objects are created using the object initializer syntax. A colon (:) separates keys and values for the object’s properties. Somehow, this colon is missing or misplaced. SyntaxError: Invalid shorthand property initializer (V8-based) SyntaxError: missing : after property id (Firefox) SyntaxError: Unexpected token ‘=’. Expected a ‘:’… Continue reading SyntaxError: missing : after property id