Essential Considerations for Updating SuiteCommerce to the 2025 Release

Keeping your SuiteCommerce environment up to date is critical for performance, security, and functionality. With the 2025.1 release, NetSuite continues to enhance its e-commerce platform, introducing improvements in order management, developer tools, and extension management. However, upgrades also bring risks if not planned correctly—especially for businesses running SuiteCommerce Advanced (SCA) with heavy customizations. Here are… Continue reading Essential Considerations for Updating SuiteCommerce to the 2025 Release

What is PWD in Magento?

In the Magento/Adobe Commerce ecosystem, PWD usually refers to “Password” (for customer accounts or admin users). If you’re asking about Magento PWA Studio (sometimes people write it as PWD by mistake) → that’s Magento’s Progressive Web App framework for building headless storefronts. So, depending on your context: PWD = Password (login/security) PWA Studio = New… Continue reading What is PWD in Magento?

Bulk Edit in Shopify

The Shopify Bulk Editor allows to efficiently edit multiple products at once, saving time and streamlining product management process. The Bulk Editor presents a spreadsheet-like interface where we can see all selected products and their properties. We can click on Add fields at the top of the Bulk Editor to include more options for editing.… Continue reading Bulk Edit in Shopify

Install Docker in Windows.

Install Docker in Windows:  https://docs.docker.com/desktop/setup/install/windows-install/  Click the download button at the top of the page or visit the release notes to get the installer.  Double-click the Docker Desktop Installer.exe file to start the installation. By default, it will install at C:Program FilesDockerDocker.  During setup, choose whether to use WSL 2 or Hyper-V as the backend… Continue reading Install Docker in Windows.

DevOps CI/CD?

CI/CD stands for Continuous Integration and Continuous Deployment (or sometimes Continuous Delivery). It’s a set of practices and tools used to automate the process of building, testing, and deploying your code, making development faster and more reliable  Continuous Integration (CI): This is about frequently merging your code changes into a shared repository (e.g., GitHub). Each… Continue reading DevOps CI/CD?

To Change the sales order form based on the Domain.

We can create an extension to check the domain. For this, we have created a configuration record and a transaction body field. If the domain matches as expected, we will add the corresponding form to the sales order during creation. Using a workflow, we can then set a condition: if the transaction body field contains… Continue reading To Change the sales order form based on the Domain.

How to Use Subcollections in Firebase Firestore and Create Multiple Child Items

When working with Firebase Firestore, you’ll often need to store related data in a structured way. For example, an Order document might contain multiple Items, or a Post might have many Comments. Firestore provides a powerful way to handle this scenario using subcollections. In this article, we’ll cover: 🔹 What subcollections are in Firestore 🔹… Continue reading How to Use Subcollections in Firebase Firestore and Create Multiple Child Items

How can I enable “Allow Remote Assistance” for all existing customers in Magento 2?

To enable Allow Remote Assistance for all customers in your Magento 2 store, you can run an SQL query directly on your database. Magento stores this preference in the table login_as_customer_assistance_allowed. Each record links to a customer by their customer_id. Here’s the SQL command to enable it for every existing customer: INSERT IGNORE INTO login_as_customer_assistance_allowed… Continue reading How can I enable “Allow Remote Assistance” for all existing customers in Magento 2?

Published
Categorized as Magento

SuiteCloud Development Framework (SDF)

  A tool for developing and customizing applications within NetSuite, providing a structured environment for developers to create SuiteApps and manage customizations efficiently.    Customize NetSuite accounts, using an integrated development environment (IDE) on the local computer.    The two types of SuiteCloud projects are account customization and SuiteApp.   An overview of development and deployment… Continue reading SuiteCloud Development Framework (SDF)

Reorder Items Not Displaying in My Account Page – SCA 2024.1.0

In SuiteCommerce Advanced (SCA) version 2024.1.0, the “Reorder Items” list in the My Account section may appear empty, even though the customer has placed previous orders. When debugging the SuiteScript backend (e.g., in ReorderItems.Service.ss), the columns or item results may look like: js Copy Edit [{}, {}, {}, {}] This means the backend query is… Continue reading Reorder Items Not Displaying in My Account Page – SCA 2024.1.0