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; }