Woocommerce Hooks In Brief

Woocommerce checkout before order review hook Woocommerce checkout before order review – remove a hook callback

Notes On SCSS

Partials on SCSS Partials in scss files contains variables and start with an underscore. It will not generate a CSS file or CSS map file, like style.scss

Difference between – -save and – -save-dev?

–save-dev adds the third-party package to the package’s development dependencies. It won’t be installed when someone runs npm install directly to install your package. It’s typically only installed if someone clones your source repository first and then runs npm install in it. A perfect example of this is: $ npm install typescript –save-dev In this […]

Frontend Essential npm Commands

Needed packages 1. Initialize Project 2. Bootstrap 3. Fontawesome 4. Autoprefixer What is Autoprefixer Autoprefixer is a CSS post-processor. It combs through compiled CSS files to add or remove vendor prefixes like -webkit and -moz after checking the code against caniuse.com. The data on caniuse.com is the most accurate data source on browser support on […]