Cange the Wizard to One Stage Solution ?
-
but there was no good way to make the wizards features carry through the confirmation process.
You can pass the arguments from the wizard through signupmeta with:
add_signup_meta filter.
add_filter( 'add_signup_meta' , 'add_meta_wizard'); function add_meta_wizard($meta) { $meta['type_option_model_blog'] = $_POST['type_option_model_blog']; return $meta; }
and then on the new_blog_action:
change the action to get 6 params:
add_action( 'wpmu_new_blog', array( $this, 'wpmu_new_blog' ),10,6 );
And get the data:
$type_option_model_blog_id = $meta['type_option_model_blog'];
Ihope this helps ??
Koff
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Cange the Wizard to One Stage Solution ?’ is closed to new replies.