Home Forums WC Vendors Free Support Vendor Profile Configuration

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 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #2525
    tsirik13
    Participant

    Hello Ben

    I want to ask can the Vendor from his admin panel area to edit his “shop description tab”
    and “seller info tab” ?

    Because i don’t see any of this options on Vendor backend profile admin area.

    I see this option only at my backend administration and i don’t know if it’s normal or issue.

    The vendor has not the ability to edit his profile information?

    Best Regards
    Dimitrios

    #2526
    WC Vendors Support
    Participant

    Of course, the vendor can access all of this. From the default Vendor Dashboard, click the link that says “My Settings”.

    yourdomain.com/vendor_dashboard/shop_settings/

    From there the vendor can configure their store name, store description, and their seller info and more.

    #2527
    tsirik13
    Participant

    Hello Ben

    Thanks for your quick reply.

    The Vendor pages and setting is working properly if i use those urls .

    But when a vendor goes to my website and log in is showing a normal “my account” page and not the vendor page with all option that you offer.

    Also i check the option tab “pages” at Wc vendors and everything it’s ok with the right pages.

    Best Regards
    Dimitrios

    #2528
    tsirik13
    Participant

    Please if you can take a look.

    http://www.wooeshop.gr/poulame

    admin: WooeshopAdmins2
    pass: Newstarter241983@!

    Thanks

    #2529
    WC Vendors Support
    Participant

    We will no longer login to your site and fix things for you. (Nothing is broken, either). We will only do this as a paid support request. https://www.wcvendors.com/contact-us/

    All you need to do is add a vendor redirect to redirect vendors to their vendor dashboard after logging in. It’s pretty easy. The KnowledgeBase is where you should be looking when you have a problem first. It will save me much time in replying to the same questions over, and over, and over again.

    https://www.wcvendors.com/knowledgebase/

    and more specifically:

    https://www.wcvendors.com/knowledgebase/redirecting-vendors-seller-dashboard-login/

    That should solve your problem. Read up on the docs a bit, it will save you a lot of time. 🙂

    Ben

    #2530
    tsirik13
    Participant

    Ok Ben, I dont search at knowledge Base because i think this redirection is not need to work as extra customization for vendor users.

    i would try to add this code

    Best regards

    #2531
    WC Vendors Support
    Participant

    It’s OK, we’ll always support you the best we can on the forums here, and happily!

    Let me know if you need anything else.

    Regards,

    Ben

    #2532
    tsirik13
    Participant

    Sorry if i’am annoying but is a bit difficult for me to write properly the code.

    My functions.php has this code inside

    <?php
    /**
    * @package WordPress
    * @subpackage Oswad Market
    * @since WD_Responsive
    **/

    $_template_path = get_template_directory();
    require_once $_template_path.”/theme/theme.php”;
    $theme = new Theme(array(
    ‘theme_name’ => “OswadMarket”,
    ‘theme_slug’ => ‘oswadmarket’
    ));
    $theme->init();

    /**
    * Slightly Modified Options Framework
    */
    require_once (‘admin/index.php’);

    ?>

    I try to put your code like this

    <?php
    /* 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;
    }
    }
    /**
    * @package WordPress
    * @subpackage Oswad Market
    * @since WD_Responsive
    **/

    $_template_path = get_template_directory();
    require_once $_template_path.”/theme/theme.php”;
    $theme = new Theme(array(
    ‘theme_name’ => “OswadMarket”,
    ‘theme_slug’ => ‘oswadmarket’
    ));
    $theme->init();

    /**
    * Slightly Modified Options Framework
    */
    require_once (‘admin/index.php’);

    ?>

    But is not working.

    If iam wrong somewhere please correct me

    Best Regards

    #2533
    WC Vendors Support
    Participant

    What happens when a VENDOR logs in? (This will only work for Vendors, not site admins).

    #2534
    tsirik13
    Participant

    Yes i know i have a vendor accoun.

    My site is working at subfolder as a demo http://www.wooeshop.gr/poulame

    When i am going to login as a vendor then redirects me here http://www.wooeshop.gr/vendor_dashboard

    and here is not this page.. i thing must going to http://www.wooeshop.gr/poulame/vendor_dashboard

    But i can’t undestund where is the problem

    #2535
    WC Vendors Support
    Participant

    $redirect_to = ‘/vendor_dashboard’;

    If you need it to go to /poulame/vendor_dashboard — what do you think that line of code should be changed to? 🙂

    #2536
    tsirik13
    Participant

    It works!

    My programming skills was upgrated! 🙂

    Thanks a lot

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