login to the netsuite navigate to the commerce->hosting->ssp application click on corresponding application folder check the extension corresponding to the issue and enable the permission Save
Author: Priyadarshini Elumalai Kannan
how to edit the linux host file
1) Open Terminal in Linux 2) Open the hosts file in Terminal Once inside the Terminal console, make sure you are in the top-level folder by typing the command: cd / The path to the hosts file on Linux is: /etc/hosts Editing the file requires administrative privileges (sudo) and a text editor such as Nano. Use… Continue reading how to edit the linux host file
Resolve: unexpected error :bundle failed ticket number
Solution: For uninstall the bundle Navigate to Customization –> Scripting select the edit of corresponding uninstall bundle disable inactive button click the save button. Now try to install or uninstall the bundle.
How to resolve the TypeError:Cannot read properties of undefined (reading ‘source’)
This error as shown in the screenshot below, may occur while we run the gulp command. This error can be resolved by replacing the gulp folder in the extension/theme folder with the gulp folder in the extension/theme development tools respectively.
Error: Missing binding /home/jandj/Documents/GitHub/Pure_Care_Inc_Canada/SCA Development/Sandbox/SCA1/Extension/node_modules/node-sass/vendor/linux-x64-83/binding.node
The error message you’re encounteringError: Missing binding /home/jandj/Documents/GitHub/Pure_Care_Inc_Canada/SCA Development/Sandbox/SCA1/Extension/node_modules/node-sass/vendor/linux-x64-83/binding when we try to fetch or run local error message as shown above will display in our terminal. Here are a few steps you can take to troubleshoot and solve this issue: Solution 1 npm rebuild node-sass now again try to fetch or run local If… Continue reading Error: Missing binding /home/jandj/Documents/GitHub/Pure_Care_Inc_Canada/SCA Development/Sandbox/SCA1/Extension/node_modules/node-sass/vendor/linux-x64-83/binding.node
How to resolve Fonts are looking different in when compared chrome, Edge with safari browser
We can add the below styling if we have differences in font weight,size etc -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; note: If the styling is the same as we provided but displaying differently is due to the font rendering engine and their version, respectively, there will be a slight difference in font weight and letter spacing… Continue reading How to resolve Fonts are looking different in when compared chrome, Edge with safari browser
How to Rename the breadcrumb values using getBreadcrumbpages function
_.extend(CartDetailedView.prototype, { // Renaming the breadcrumb of the page from shopping cart to My cart getBreadcrumbPages: function (e) { const breadCrumb = [ { text: Utils.translate(‘My Cart’), href: ‘/cart’ } ] return breadCrumb; }, });
How to a add tooltip for expander text using CSS
we can add the ? using CSS by extending the standard tooltip In the template file where we need to call the default data-toggle and style the class as shown below <i data-toggle=“tooltip” class=“cart-summary-expander-tooltips”></i> @extend .sc-tooltip; .cart-summary-expander-tooltips{ @extend .sc-tooltip; cursor: pointer; color: #6EA8FE; }
How to resolve error: Sorry, you don’t have sufficient permissions to request a quote online.
Enabling the permission for the quote Navigate to Commerce > Hosting > SSP Applications Click Application Folder link inline with the SSP Application Click Services folder Edit Quote.Service.ss Click Permission tab Enabled: Remove Checkmark Click Save While choosing the excute as role make sure that customer role is similar Enabling the permission for the quote
How to remove increment/decrement buttons on number inputs
we can use the css property for removing the increment/decrement buttons as shown below code input.quick-add-box-right-quantity-value[type=”number”], input.cart-item-summary-quantity-value[type=”number”]{ -webkit-appearance: none; -moz-appearance: textfield; appearance: textfield; }