WooCommerce – Change SKU label

How to change the “SKU”  label used to identify products in WooCommerce First method – PHP.The following code must be inserted in the function.php contained in your child theme (**). /* This code change the SKU label for all Woocommerce products */...

WordPress – Get future post events

Annonce an upcoming event using a simple post   You may need to publish some events on yours web pages to invite your visitors to a workshop, a concert, a meeting or an online presentation.  There are a number of good WordPress plugins to manage events as the...

JS – Round a value

Returns a rounded value function roundit(n) { if(n== »NaN » || typeof n == « undefined » || n == «  » || n == null) {return « n/a »;} else { k = parseFloat(n).toFixed(0); return k;}...

JS – Add a percent sign

Returns a value with percent sign // function addCent(n) { if(n== »NaN » || typeof n == « undefined » || n == «  » || n == null) {return « n/a »;} else {k = parseFloat(n).toFixed(1) + « % »; return k;}...