Implementing a “Buy X Get Y Free” promotion in a Suite Commerce website involves making changes to the product listings, cart, and possibly the checkout process. Below are the details for setting up this promotion: Promotion Details: Buy X Get Y Free Offer: Promotion Type: Buy X Get Y Free X Quantity: Purchase [X] quantity… Continue reading Buy X Get Y Free Promotion
Month: December 2023
fix computer not booting in to windows
If your computer is not booting into Windows, there could be various reasons for this issue. Here’s a step-by-step guide to help you troubleshoot and potentially fix the problem: Check Hardware Connections: Ensure that all cables, including power and data cables, are securely connected to your computer. Check for loose RAM modules, graphics cards, or… Continue reading fix computer not booting in to windows
Minimum Web Store Order Amount
You can restrict customers from checking out of your web store until they have reached a minimum total sales amount. If you have multiple subsidiaries and use multiple currencies in your web store, you can set a minimum order amount for each currency that is marked online. Use the following steps. To set a minimum… Continue reading Minimum Web Store Order Amount
How to solve Products are duplicating in the recently viewed product slider.
When viewed 2 products, those products are duplicating in the recently viewed slider.There is no navigation buttons present for the recently viewed products slider. Blank spaces are appearing when scrolled after the last product in the slider. For this issue we need to customize the bx-slider for our requirement. Here I modified the slider For… Continue reading How to solve Products are duplicating in the recently viewed product slider.
Streamlining Vue.js with CDN in HTML file
Vue.js is a powerful JavaScript framework that allows you to build dynamic and interactive user interfaces. One of the easiest ways to get started with Vue.js is by using it directly from a Content Delivery Network (CDN) through a simple script tag in your HTML file. CDN Setup To use Vue.js from a CDN, you… Continue reading Streamlining Vue.js with CDN in HTML file
Every 1 Item – Buy X, Get Y– Free Gift
Customers are eligible for a free item every time they buy at least one of a specific different item. This promotion is a common type of promotion in retail where customers are offered a free item or items when they purchase a certain quantity of another item. If you want to implement this type of… Continue reading Every 1 Item – Buy X, Get Y– Free Gift
Bypassing the power button on a computer
Bypassing the power button on a computer isn’t a recommended or common practice, and doing so could potentially lead to unintended consequences or damage to your computer. The power button is a critical component designed to safely turn your computer on or off. If you’re facing issues with your power button, it’s generally better to… Continue reading Bypassing the power button on a computer
Adding a digital signature certificate (DSC)
Digital signature certificate (DSC) to a document or file, the process generally involves the following steps: Get a Digital Signature Certificate (DSC): You need to obtain a digital signature certificate from a certifying authority (CA) accredited by the government. Install DSC Software: Install the necessary software provided by the certifying authority to use your digital… Continue reading Adding a digital signature certificate (DSC)
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
To loop through all item lines when each item line is added
when each item field is added this line field should be updated and also sum of this field should be updated in body field . Implement the client script in sublistChanged trigger: Note: This process will impact the record performance. /** * Function to be executed after sublist is inserted, removed, or edited. * * @param… Continue reading To loop through all item lines when each item line is added