Home Forums WC Vendors Free Support Redirect pending Vendors

NOTICE: We've Moved to a Ticket System for Support

As of August 31, 2017 (12am EST) our support forums will be retired (read-only), and we will be moving to a support ticket system.  This will allow us to better organize and answer support requests, and provide a more personalized experience as we assist our customers.

For the time being, we will leave our forums open for reading and learning while we work on creating a more robust Knowledge Base for everyone to use.

If you are a WC Vendors Pro customer please open a support ticket here. 

If you are a WC Vendors user please open a support ticket on the Wordpress.org forums.

The information on this forum is outdated and in most instances no longer relevant. Please be sure to check our documentation for the most up to date information.

https://docs.wcvendors.com/

Thank you to all of our customers!

 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #3964
    mashwebdesign
    Participant

    Hi Guys, I have been using the below code to redirect vendors to the vendor dashboard. I want to be able to redirect pending vendors as well, i tried is_pending_vendor but it didn’t work, could you guys help?

    /* Redirect Vendors to Vendor Dashboard on Login */
    add_filter(‘woocommerce_login_redirect’, ‘login_redirect’, 10, 2);
    function login_redirect( $redirect_to, $user ) {

    if ( WCV_Vendors::is_vendor( $user->id ) ) {
    $redirect_to = ‘/vendor_dashboard’;
    return $redirect_to;
    } else {
    $redirect_to = ‘/my-account’;
    return $redirect_to;
    }
    }

    Also, when is the premium version of your plugin going to be released? And what features will it have.

    Do you have any plans to build a subscription service into the vendors plugin, as currently i am using woocommerce subscriptions but it would be so much smoother if your plugin catered it. So you could take monthly payments from vendors and commissions.

    Cheers
    Adak

    #3965
    mashwebdesign
    Participant

    Sorted its :is_pending. My bad haha.

    If you could give me an update on the others questions that would be brilliant.

    Also could you point me in the right direction. I manage and will change users into pending vendors, When i switch users to pending vendor, i would like it to fire an automatic email explaining what to do next.

    Could you let me know how to do that. Sorry a proper woocommerce noob here.
    Adam

    #3975
    WC Vendors Support
    Participant

    We do plan to write a membership module for WC Vendors Pro. It will not be in the first release. The goal would be Vendors have to pay a one time or monthly/whatever subscription to be a vendor on your site.

    Sending vendors the “pending vendor” email is only done when they apply to become a vendor on the front-end. If you do everything manual, there’s no way to trigger those emails to fire, so this cant be done. 🙁

    #64605
    Richard
    Participant

    Has there been any progress on the membership module for WC Vendors Pro?
    I’d like to charge my vendors a one-time fee to become a vendor. I’m currently trying to hack something together myself, and so far it’s pretty clunky.

    Thanks,
    Rick

    #64726
    Anna
    Member

    @rkingw
    Hello,
    No we do not have a membership system built into WC Vendors or WC Vendors Pro at this time.
    I have one solution here.. but it sounds like you already have something in place:

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘WC Vendors Free Support’ is closed to new topics and replies.