Proposal Summary This proposal covers the implementation of the MOQ (Multiple Order Quantity) functionality in the Suite Commerce Website of OX Tools Global. Requirement Currently in the NetSuite, MOQ functionality is implemented for creating sales orders. For the customers who have MOQ feature enabled in the customer record, we have to implement multiple order quantity… Continue reading Proposal For Implementing the MOQ functionality in SCA website.
Tag: cart
Sitebuilder website cart update for minimum order
In sitebuilder website cart page to set a minimum order message need to update in shopping cart tab. When minimum order amount is below $35. Then a message will show and the the checkout button made disable. var stotal = $(“#carttablerowtotal .carttablecellamount”).text().slice(1).replace(/,/g, ”); var st = Number(stotal).toFixed(2); if (st < 35) { $(“<span class=’minimumorder’>A minimum… Continue reading Sitebuilder website cart update for minimum order
Add a success message when item add to cart
On the PDP page when we click the ‘Buy’ button,we need to add the message “Item Added to cart” cart_promise.done(function () { // Display “Item added to cart” message var cartMessage… Continue reading Add a success message when item add to cart
How to write a code that needs to run based on any change happening in the cart.
When extending the cart view, when any values like quantity or cart add/remove is happening and we need to update any values in the cart according to the change we can use the following code: This function will run every time an update happened in the model
Proposal For Change Personalization Color Logo Option
Proposal Summary This proposal covers the Change in the personalization color logo option pricing on the PDP page of the Artina Group website. Requirement Need to charge the same price free for a 1-color or 2-color logo: $90. Currently charge two different price levels based on customer selection. Require to combine the one color and… Continue reading Proposal For Change Personalization Color Logo Option
Add multiple lines to the cart
Adds multiple lines to the cart. This method takes a single object as its argument with one property called lines. The value of lines is an array of Line objects.
Proposal For making cart text as configurable in the webstore
This proposal covers the development of making cart text as configurable in the webstore for Thermogard domains. Requirement In the cart page, the text at the top section need to make it configurable in the webstore for Thermogard domains. Our solution We can make the cart text as configurable by using an extension. We are… Continue reading Proposal For making cart text as configurable in the webstore
Sorting Functionality In Cart
Client Needs to Change the default sorting method which is currently used for sorting the cart items.By default, the items are sorted in the order they were added. So, it need be changed to sort on the basis of brand and sub-category. define( ‘JJ.CartSCrollUpdate.CartScrollUpdate’, [ ‘JJ.CartSCrollUpdate.CartScrollUpdate.View’, ‘Cart.Item.Actions.View’, ‘GlobalViews.Modal.View’, ‘Profile.Model’, ‘Cart.AddToCart.Button.View’, ‘Cart.Summary.View’,… Continue reading Sorting Functionality In Cart
Error while adding matrix item to cart
When a shopper adds a Matrix Item to the cart, an error “Sorry, there is a problem with this Item and can not be purchased at this time. Please check back later.” will pop-up and item cannot be added. One of the possible causes of the issue is a misconfiguration of the Transaction Item Options associated for the Matrix Item. Solution To… Continue reading Error while adding matrix item to cart
Add promotion using extensibility API
Applies a promotion to the cart. If the promotion code is valid and successfully applied to the order, the promotion appears in the cart automatically and the order total is updated. Returns a Deferred object. If the promise resolved, it returns a Promise object. If the promise is rejected (because the promotion could not be… Continue reading Add promotion using extensibility API