by Garth | Jul 22, 2018 | PHP, Plugins, Wordpress
Meta Box – WordPress Custom Fields Framework The code below relates to the meta box plugin. And the code below relates to 2 custom post types. Players and Coaches. And then adding meta fields to those custom post types. // Custom Post 1 register_post_type(...
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...