Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Groups & Staffs › Shop manager access to certain stores
- This topic has 7 replies, 4 voices, and was last updated 4 years, 6 months ago by Sushobhan.
- AuthorPosts
- July 17, 2019 at 8:09 pm #72886McflaitParticipant
Hi!
There is a way to create a vendor(user) who has the capability to own more than one store? or a shop manager who can only manage and load products for only certain specific stores?
Thanks!
- July 19, 2019 at 1:18 pm #73091WCFM ForumMember
Hi,
There is a way to create a vendor(user) who has the capability to own more than one store?
– Sorry, this is not possible.or a shop manager who can only manage and load products for only certain specific stores?
– This is possible using WCFM – Group & Staff addon (http://wclovers.com/product/woocommerce-frontend-manager-groups-staffs/)
You have to create “Vendor Group” and assign “Group Manager”.Thank You
- May 1, 2020 at 11:03 am #125300KadeOParticipant
or a shop manager who can only manage and load products for only certain specific stores?
– This is possible using WCFM – Group & Staff addon (http://wclovers.com/product/woocommerce-frontend-manager-groups-staffs/)
You have to create “Vendor Group” and assign “Group Manager”.Should this functionality also automatically filter the stores directory and make it show up only with the stores from the group they manage?
I need a group manager that can manage their group of stores (as the manager) to also be able to see all of the normal stores in the whole stores directory list (as if they were just a normal user on the site)Is this possible?
- May 4, 2020 at 6:17 pm #126522SushobhanKeymaster
Hi,
Thanks for getting in touch with us!
The store page or store list page, or for that matter any other product archive page, has nothing to do with user roles. It’s same for everyone (default behavior) even the non logged in users.
Managers can manage stores only from their dashboard.
I hope this answers your question.
Thank You! - May 6, 2020 at 6:13 am #127211KadeOParticipant
Hi,
Thanks for getting in touch with us!
The store page or store list page, or for that matter any other product archive page, has nothing to do with user roles. It’s same for everyone (default behavior) even the non logged in users.
Managers can manage stores only from their dashboard.
I hope this answers your question.
Thank You!Hi Sushobhan, thank you for getting back in touch. The reason I ask is because we have the groups and staff addon and we found that the shortcode [wcfm_stores] lists on a page as the directory of all vendor stores, it shows all active stores UNLESS you are logged in on the site as a ‘Store Manager’ login in which case it is automatically filtering the store list to only show the stores that Manager login has access to.
I can’t find a way to turn this off so a store manager can view the store directory with all the stores without having to add them as a manager to all the different groups available.
- May 6, 2020 at 12:51 pm #127301SushobhanKeymaster
Hi,
Okay, so I was wrong 🙁
Please use the following snippet to stop this behavior on store list page-add_filter( 'wcfm_allow_vendors_list', function( $allow_vendors = array(0) ) { if( wcfm_is_group_manager() && ! is_admin() && ! is_wcfm_page() ) { return array(0); } return $allow_vendors; }, 110 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Let me know how this goes.
Thanks! - May 12, 2020 at 7:18 pm #130053KadeOParticipant
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Let me know how this goes.
Thanks!Thank you, that appears to be doing the trick nicely 🙂
- May 12, 2020 at 8:09 pm #130096SushobhanKeymaster
You are always welcome 🙂
Let me know if there’s anything else we can help you with.
Can we ask for a favor? Would you mind taking a few minutes to review our plugin (if you haven’t already) at https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/ and let others know about your 5 Star experience with WCFM Marketplace. Also, follow us on Twitter https://twitter.com/wcfmmp for more exciting news, important updates, and irresistible offers.
- AuthorPosts
- You must be logged in to reply to this topic.