by admin | Feb 10, 2021 | Woocommerce
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 */...
by admin | Feb 4, 2021 | Shortcodes, WordPress
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...
by admin | Jan 28, 2021 | Js, Snippets
Convert Html to Text function htmlTotext(t) { if(t) {return t.replace(/(]+)>)/ig, » »); }...
by admin | Jan 28, 2021 | Js, Snippets
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;}...
by admin | Jan 28, 2021 | Js, Snippets
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;}...