by Garth | Jul 13, 2018 | CSS, PHP, Wordpress
// Styles and Scripts add_action(‘admin_head’, ‘my_custom_styles_and_scripts’); function my_custom_styles_and_scripts() { echo ‘ <script...
by Garth | Jul 8, 2018 | PHP, Snippets, Woocommerce, Wordpress
$woocommerce->cart->empty_cart();
by Garth | Jul 6, 2018 | Plugins, Wordpress
Simple Google Analytics...
by Garth | Jun 29, 2018 | PHP, Woocommerce, Wordpress
add_action(‘woocommerce_checkout_update_order_meta’,function( $order_id, $posted ) { $order = wc_get_order( $order_id ); $order->update_meta_data( ‘selected_date’, $_COOKIE[‘selected_date’] ); $order->save(); } , 10, 2); On...
by Garth | Jun 25, 2018 | Plugins, Wordpress
Woo Preview Emails Great for previewing the Woocommerce emails without having to send out a hundred emails for every...
by Garth | Jun 13, 2018 | Plugins, Wordpress
Edit posts on the fly...