by Garth | Jul 30, 2018 | PHP, Snippets, Woocommerce, Wordpress
Click link below WPBeginner
by Garth | Jul 8, 2018 | PHP, Snippets, Woocommerce, Wordpress
$woocommerce->cart->empty_cart();
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 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’,...