View wc-add-new-country.php
<?php | |
add_filter( 'woocommerce_countries', 'gnwooc2_ajouter_pays' ); | |
function gnwooc2_ajouter_pays( $countries ) { | |
$new_countries = array( | |
'NIRE' => __( 'Irlande du NORD', 'woocommerce' ), | |
); | |
return array_merge( $countries, $new_countries ); | |
} |
View wc-unhook-remove-emails.php
<?php | |
/** | |
* Code goes in functions.php or a custom plugin. | |
*/ | |
add_action( 'woocommerce_email', 'unhook_those_pesky_emails' ); | |
function unhook_those_pesky_emails( $email_class ) { | |
/** | |
* Hooks for sending emails during store events |
View 0_reuse_code.js
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |