Skip to content
Snippets Groups Projects
Commit 4271e6a3 authored by Reinhold Kainhofer's avatar Reinhold Kainhofer
Browse files

Connect the hooks for order action handling in the backend (to assign a new...

Connect the hooks for order action handling in the backend (to assign a new ordernumber to an existing order)
parent 99ed5f31
No related branches found
No related tags found
No related merge requests found
......@@ -176,6 +176,9 @@ if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', g
add_action( 'woocommerce_admin_field_ordernumber_counters', array( $this, 'admin_field_counters' ) );
add_action( 'woocommerce_admin_field_ordernumber_variables', array( $this, 'admin_field_variables' ) );
add_action( 'pre_update_option_ordernumber_variables', array( $this, 'update_option_variables'));
add_action( 'woocommerce_order_actions', array( $this, 'add_order_action_new_number' ) );
add_action( 'woocommerce_order_action_assign_new_ordernumber', array( $this, 'order_action_assign_new_ordernumber' ) );
add_action( 'admin_print_styles-woocommerce_page_wc-settings', array($this, 'print_admin_styles'));
add_action( 'admin_print_scripts-woocommerce_page_wc-settings', array($this, 'print_admin_scripts'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment