BuddyDev

Search

Replies

  • Participant
    Level: Initiated
    Posts: 5
    Nicole Martinez on #4987

    Thank you,
    I just sent an email. Hopefully you can help me via email? I can grant you access to my website?

  • Participant
    Level: Initiated
    Posts: 5
    Nicole Martinez on #4985

    Hi Brajesh,
    I do not know how to edit codes that well. I am still kinda new to wordpress. Is your company able to do this? If not, am I able to get a refund due to it not working?
    Thank you again for your help

  • Participant
    Level: Initiated
    Posts: 5
    Nicole Martinez on #4983

    No worries,
    It’s still doing the same thing… Can I edit the code to automatically have their account activated without sending an activation email and then directing them to a page stating for them to log in?

  • Participant
    Level: Initiated
    Posts: 5
    Nicole Martinez on #4979

    Hi Brajesh,
    I do not have site level caching plugins.

    I opened a new browser, and the problem is still occurring.
    I wish I could send you some photos to show you the problem, but again, the menu bar is still sending new registered users an activation email.

    But if new user goes to http://www.ywclocal.com/register/, they account is automatically activated but they are not logged in but can see their profile ( The menu navigation still has a register and log in icon).

    Thank you for your speedy response, I really appreciate your help

  • Participant
    Level: Initiated
    Posts: 5
    Nicole Martinez on #4977

    Hi,
    I am using (profile fields plugin).
    My website is ywclocal.com
    I have two ways for people to sign up. By clicking on the registration icon on the menu tap, “Which still sends them an activation email”.
    Or by clicking sign up on my home page and this automatically activates their account with your plugin but does not log them in. Instead, it takes them to their profile without being logged in.

    I also have WC Vendors and have this code under function
    /* Redirect Vendors to Vendor Dashboard on Login */
    add_filter(‘woocommerce_login_redirect’, ‘login_redirect’, 10, 2);
    function login_redirect( $redirect_to, $user ) {

    // WCV dashboard — Uncomment the 3 lines below if using WC Vendors Free instead of WC Vendors Pro
    // if (class_exists(‘WCV_Vendors’) && WCV_Vendors::is_vendor( $user->id ) ) {
    // $redirect_to = get_permalink(WC_Vendors::$pv_options->get_option( ‘vendor_dashboard_page’ ));
    // }

    // WCV Pro Dashboard
    if (class_exists(‘WCV_Vendors’) && class_exists(‘WCVendors_Pro’) && WCV_Vendors::is_vendor( $user->id ) ) {
    $redirect_to = get_permalink(WCVendors_Pro::get_option( ‘dashboard_page_id’ ));
    }
    return $redirect_to;
    }