Are you using the Pro version?
I got all excited about the “success=”http//…”” shortcode, but then I see that it doesn’t work for an account modification, as in going from a free member to level 1 or 2, which is the case.
How about this:
<?php
add_action('ws_plugin__s2member_during_configure_user_registration', 's2_auto_login_after_registration');
function s2_auto_login_after_registration($vars = array()) {
if(is_admin()) return; // Not when an Admin is creating accounts.
wp_set_auth_cookie($vars['user_id'], FALSE, FALSE); // Log the user in.
if(did_action('login_form_register')) // For <code>/wp-login.php?action=register</code> compatibility.
c_ws_plugin__s2member_login_redirects::login_redirect($vars['login'], $vars['user']);
$GLOBALS['_s2_auto_login_after_registration_vars'] = $vars; // For Pro Form compatibility.
add_action('template_redirect', '_s2_auto_login_after_registration', 1);
}
function _s2_auto_login_after_registration() // Pro Form redirection handler.
{
$vars = $GLOBALS['_s2_auto_login_after_registration_vars'];
c_ws_plugin__s2member_login_redirects::login_redirect($vars['login'], $vars['user']);
}
I have that in a file I call s2-auto-login.php in my mu-plugins folder.
I just found this coding, I haven’t tried it yet, but I a hoping it might work:
<?php
add_filter(‘ws_plugin__s2member_redirection_url_after_modification’, ‘my_modification_redirection_url’);
function my_modification_redirection_url()
{
return ‘http://ontariodoulas.org/wp/members-only/member-center/’;
I found it here http://www.s2member.com/forums/topic/custom-success-shortcode-not-working/
Thank you! That’s great, I figured there had to be something, I just couldn’t find what. 🙂
I have changed it to a multiselect list because the search widget was showing way to many check boxes. For submitting a listing, where could I add “to select more then one category, hold down the control key”? I just know that there will be many who have no idea how to do that.
Thanks!
How about adding a textarea to the form, making it required, and adding readonly="readonly" to the attributes section at the bottom (so that it can’t be edited or deleted by your users)?