• Resolved mycru.io

    (@kawaiikawaii)


    All my users are very confused about how to sign up as Vendor.
    All people who are planning to become a Vendor on my site
    are first a registered members. So they are logged in already.

    Sign up as member is only available on the my-account page ?

    If I show them the: my-account page
    than they get confused. When they try to register to become a vendor
    system says it is impossible because email is already used ?!!
    User don’t accept that they have to type in again a new email.

    I need a sign up as vendor page. Only for that.
    And sign up with the already stored email should be possible.
    Also is it true that this plugin only works if i display the wordpress dashboard ? on my site it is hidden on purpose.

    https://www.ads-software.com/plugins/yith-woocommerce-product-vendors/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Dear user , the plugin currently does not allow a registered user to become a vendor , but will add to short on the premium version . However you can switch users as vendors simply assigning them as owners of a store .

    As for the dashboard , it works in the backend of wordpress . If you have disabled this function you need to do a fix to allow only those who are entering a vendor in the backend (you can ask it to our theme developer).

    Regards

    Yithemes

    Thread Starter mycru.io

    (@kawaiikawaii)

    – This means I have to create a store first correct ?

    Plugin Author YITHEMES

    (@yithemes)

    Yes, of course!

    Thread Starter mycru.io

    (@kawaiikawaii)

    thanks !!!

    can you please be so kind and let me know a plugin that helps me to show the dashboard only to the Vendors

    Plugin Author YITHEMES

    (@yithemes)

    It isn’t simple to do, I need more information.
    You disable the dashboard by functions.php or it is a theme feature ?

    Wich theme you use ? WP and WC Version ?
    Let me know. Thanks!

    Thread Starter mycru.io

    (@kawaiikawaii)

    My theme is KLEO from Seventhqueen.

    I disabled the dashboard visibility for my users ,except admin currently with this code in my child theme function.php

    function remove_admin_bar() {
    if (!current_user_can('administrator') && !is_admin()) {
      show_admin_bar(false);
    }
    }

    I’m using WP:4.2.4
    and WC: 2.4.4

    appreciate your help.

    Plugin Author YITHEMES

    (@yithemes)

    Replace your code with this:

    function remove_admin_bar() {
        if( function_exists( 'yith_get_vendor' ) ){
            $vendor = yith_get_vendor( 'current', 'user' );
    
            if( $vendor->is_valid() && $vendor->has_limited_access() ){
                return;
            }
        }
    
        if (!current_user_can('administrator') && !is_admin()) {
          show_admin_bar(false);
        }
    }

    Let me know.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Sign up problem’ is closed to new replies.