BuddyBoss Home – Web Support Forums Solutions Social MarketPlace Users can not be activated

Viewing 5 posts - 1 through 5 (of 5 total)
  • Question

    #66585
    @wedou

    First i have to say, you guys did a great job!
    Theme is looking great and after a few issues it also works more or less.

    My Problem is, that i cant reply, post comments or write on my own Wall on normal Customer- and as well on Vendor-Role Accounts (Note showing up: There was a problem posting your update. Please try again.) and if i send out a friends request it is possible to see the requests but i cant or accept the request. Everything works finde with my Admin Account, i can post on my wall, post on Users Wall and i can send Friends Requests.

    Anyways, after hours and hours of searching for the problem i just found out, that the user activation is not working – may this be the issue?

    So if i register a new Member and activate em by E-Mail, the new Member is not showing up under All Users in the Dashboard, its showing up as “Participant” and if i Extend the User the Status shows: User account has not yet been activated…

    You guys ever heard of that issue?

    Answers

    #66595
    @anve

    Hi @wedou,

    Please give us some time to check this one with our developers. We will be back within 24 hrs.

    Regards
    Anve

    #66609
    @vapvarun

    Hi @wedou

    Please add following function as immediate solution to activate those users.
    We are working on fix and it will be available in coming versions

    You can add it inside child theme functions.php

    
    function activate_users_patch() {
        global $wpdb;
    
        $wpdb->query( "UPDATE {$wpdb->users} SET user_status = 0 WHERE user_status = 2" );
    }
    
    add_action( 'init', 'activate_users_patch' );
    

    Regards
    Varun dubey

    #66614
    @wedou

    Hey Varun

    Thank you for your fast Replay.
    Function works fine and site is running like this.

    Looking foreward to the coming Versions!

    Regards,
    Michele

    #66615
    @vapvarun

    🙂 Great
    Regards
    Varun Dubey

Viewing 5 posts - 1 through 5 (of 5 total)
  • The question ‘Users can not be activated’ is closed to new replies.