Remove “on sale” badge on WooCommerce
[cc lang=”php”]function wpsnip_remove_sales_flash() { return false; } add_filter( ‘woocommerce_sale_flash’, ‘wpsnip_remove_sales_flash’ ); [/cc]
[cc lang=”php”]function wpsnip_remove_sales_flash() { return false; } add_filter( ‘woocommerce_sale_flash’, ‘wpsnip_remove_sales_flash’ ); [/cc]
[cc lang=”php”] add_filter( ‘default_checkout_country’, ‘wpsnip_default_checkout_country’ ); add_filter( ‘default_checkout_state’, ‘wpsnip_default_checkout_state’ ); function wpsnip_default_checkout_country() { return ‘US’; } function wpsnip_default_checkout_state() { return ‘CA’; } [/cc]
First up let’s add As an example my Plugin is called Puri. Replace that with your Plugin name. First up let’s add the following to the puri.php (yourplugin.php) file in the first level. Once defined let’s register the WordPr ess menu. Go inside the admin folder and find
Copy and paste the following into your wp-config.php file, above the “happy Blogging” comment. All errors or notices will now be saved into a debug file which you can find at: