Changeset 2857041
- Timestamp:
- 01/30/2023 11:33:08 AM (3 years ago)
- File:
-
- 1 edited
-
webmaxycdp/trunk/includes/class-webmaxycdp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
webmaxycdp/trunk/includes/class-webmaxycdp.php
r2856990 r2857041 198 198 add_action('woocommerce_checkout_order_processed', array($this,'wmxA_checkout_order_event'), 10, 1); 199 199 add_action('woocommerce_order_status_cancelled',array($this, 'wmxA_cancel_order_event'), 21, 1 ); 200 add_action('woocommerce_order_status_changed', 'wmxA_order_status_event', 10, 1); 200 // add_action('woocommerce_order_status_changed', 'wmxA_order_status_event', 10, 1); 201 add_action('woocommerce_order_status_changed', array($this, 'wmxA_order_status_event'), 10, 1); 201 202 add_action( 'woocommerce_update_product',array($this, 'wmxA_price_change_event') ,10, 1 ); 202 203 add_action( 'updated_post_meta', array($this, 'mp_sync_on_product_save'), 10, 4 ); … … 503 504 504 505 if ( $is_admin ) { 505 return ;506 return false; 506 507 } 507 508 if (!session_id()) {
Note: See TracChangeset
for help on using the changeset viewer.