Viewing 6 replies - 1 through 6 (of 6 total)
  • Can it be a page with a message like “Add your phone (location, whatever) to become L2 member”? Must be a custom form, with a script behind, to change level if provided info is valid.

    Thread Starter digamberpradhan

    (@digamberpradhan)

    Custom form, got it, now i guess i’ll gave to look at the script sigh!

    Thread Starter digamberpradhan

    (@digamberpradhan)

    I am very disappointed that no one in the s2member support forum pointed me to this https://www.s2member.com/kb/roles-caps-via-php/ it was in the knowledge base and so simple to do

    <?php
    $user_id = 123;
    $user = new WP_User($user_id);
    $user->set_role("s2member_level1");
    ?>

    Hello,
    that piece of code where you put it to change the level automatically.
    Thank You

    Thread Starter digamberpradhan

    (@digamberpradhan)

    I created a simple form for the user that they can see when they log in.
    And then when they submit the form I upgraded there membership.

    <?php
    add_action('init', 'custom_upgrade_membership');
    function custom_upgrade_membership()
    {
    if(!empty($_POST['upgrade']))
       {
        $user_id = get_current_user_id();
        $user = new WP_User($user_id);
        $user->set_role("s2member_level1");
      }
    }
    
    ?>

    something like this hope it was helpful for you

    Thanks, I’ll try

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Member Upgrade to Level 1 Without Paying’ is closed to new replies.