Hi @arsenalemusica, our replies are inline :
1) I had already all my settings and my pages ready. The problem is that users don’t have a link like “apply for becoming vendor” in their dashboard, i.e. something that tells them to go the vendor_registration page. I don’t want to create a link, I want a link by default
>> You need to manually add the page as a menu in your site via WP-admin >> Appreance >> Menue
This way, user can see that page and register in your site as a vendor.
2) the snippet helped showing the logout dropdown, though I’d prefer not to have to use such patches. Ther’s also a link “wordpress backend” that of course I need to hide. How?
>> In order to remove the backend link, you may use this code (add this in the function.php of the current theme):
add_filter( 'wcmp_vendor_dashboard_header_right_panel_nav', 'filter_wcmp_vendor_dashboard_header_right_panel_nav', 10, 1 );
function filter_wcmp_vendor_dashboard_header_right_panel_nav( $panel_nav ) {
unset($panel_nav ['wp-admin']); //remove Backend Link
return $panel_nav ;
}
alternatively, you may use WCMp Advance Frontend Manager (https://wc-marketplace.com/product/wcmp-frontend-manager/) plugin to restrict vendor from accessing the backend.
3) I have WCMP installed by the theme and I’m sorry to say that I don’t like it. I’m stressed enough to register to yet another forum and go into another long question-answer process for a plugin that I hope I will remove soon. So, I’d appreciate if you could provide a solution to the Stripe problem without asking me to register. Thank you
>> Because we do need to check the settings, hence we need to access your site. Can you please send us an email here – https://wc-marketplace.com/contact-us/
There is no need for you to register in our site.
4) the orders link is broken
>> ONce we can access your site, will debug this issue.