by Garth | Jul 23, 2018 | PHP, Snippets, Wordpress
add_action( ‘admin_head’, ‘remove_my_meta_boxen’ ); function remove_my_meta_boxen() { remove_meta_box( ‘postimagediv’, ‘countries’, ‘side’ ); add_meta_box(‘postimagediv’, __(‘Country...
by Garth | Jul 23, 2018 | HTML, Javascript, Jquery, Snippets, Tools
<a href=”javascript:history.go(-1)” class=”custom_back_button”><i class=”fas fa-chevron-left”></i> Back</a> This example uses Font Awesome. Don’t forget to include Font Awesome lib in your...
by Garth | Jul 16, 2018 | Debugging, PHP, Snippets
ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’, 1); error_reporting(E_ALL);
by Garth | Jul 8, 2018 | PHP, Snippets, Woocommerce, Wordpress
$woocommerce->cart->empty_cart();
by Garth | Jun 5, 2018 | PHP, Snippets, Tools, Woocommerce, Wordpress
Send an email if there are any woocommerce orders created a before the current Day. $wp_query = new WP_Query( array( ‘posts_per_page’=> -1, ‘post_type’=>’shop_order’, ‘post_status’=>’wc-processing’,...
by Garth | Jun 5, 2018 | PHP, Snippets
function secondsToTime($seconds) { $dtF = new \DateTime(‘@0’); $dtT = new \DateTime(“@$seconds”); return $dtF->diff($dtT)->format(‘%a days, %h hours, %i minutes and %s seconds’); } echo...