Changeset 3183685
- Timestamp:
- 11/07/2024 09:57:42 AM (16 months ago)
- Location:
- eber/trunk
- Files:
-
- 3 edited
-
index.php (modified) (1 diff)
-
init/frontend.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eber/trunk/index.php
r3130508 r3183685 59 59 // EndWoo 60 60 // sync user 61 add_action( 'user_register', array('Eber_FrontEnd','sync_user'),100); 61 62 add_action('plugins_loaded', function() { 63 if (has_action('user_registration_after_user_meta_update')) { 64 add_action( 'user_registration_after_user_meta_update', array('Eber_FrontEnd','sync_user_custom'),11,3); 65 66 } else { 67 add_action( 'user_register', array('Eber_FrontEnd','sync_user'),100); 68 } 69 }); -
eber/trunk/init/frontend.php
r3063180 r3183685 333 333 } 334 334 } 335 public static function sync_user_custom( $form_data,$data,$user_id) 336 { 337 Eber_FrontEnd::sync_user($user_id); 338 } 335 339 } -
eber/trunk/readme.txt
r3130508 r3183685 110 110 = 4.1 = 111 111 fix option to stop instant sync user 112 = 4.2 = 112 = 4.2 = 113 fix option to stop instant sync user 113 114 fix user sync meta data 114 115 … … 117 118 118 119 120
Note: See TracChangeset
for help on using the changeset viewer.