Functions WooCommerce

Disable Cart, Checkout, Add Cart

Desactiva les funcions de botiga... per exemple per tenir un catàleg o perquè no vols que entrin comandes en algun moment.

// Trigger close Mode add_action (‘init’, ‘tandem_woocommerce_close_mode’); // Disable Cart, Checkout, Add Cart function tandem_woocommerce_close_mode() { remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’, 10 ); remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_add_to_cart’, 30 ); remove_action( ‘woocommerce_proceed_to_checkout’, ‘woocommerce_button_proceed_to_checkout’, 20 ); remove_action( ‘woocommerce_checkout_order_review’, ‘woocommerce_checkout_payment’, 20 ); add_action( ‘woocommerce_before_main_content’, ‘tandem_wc_shop_disabled’, 5 ); add_action( ‘woocommerce_before_cart’, ‘tandem_wc_shop_disabled’, 5 ); add_action( ‘woocommerce_before_checkout_form’, ‘tandem_wc_shop_disabled’, 5 ); } // Show close Notice function tandem_wc_shop_disabled() { wc_print_notice( ‘Our Online Shop is Closed Today :)’, ‘error’); }