Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Membership › Vendor Regestration redirect
Tagged: Regestration
- This topic has 5 replies, 2 voices, and was last updated 4 years, 7 months ago by david_kogan.
- AuthorPosts
- April 11, 2020 at 7:54 pm #118046david_koganParticipant
I want to redirect my Vendors to a thank you page after registration.
I don’t use any Membership so no the thank you page there is not working.
After the normal “simple” Vendor registration WP is redirecting the to
admin-ajax.php?vmstep=choose_membership
.This is clearly wrong.
- April 11, 2020 at 8:54 pm #118081Sarmistha ChakrabortyMember
Hello,
Please turn-on the “Disable Store Setup Widget” from Admin WCFM store manager dashboard -> Settings -> Marketplace settings -> Disable Store Setup Widget (PFA)
And do the vendor registration from the page that contain “[wcfm_vendor_registration]” shortcode.Thanks.
Attachments:
You must be logged in to view attached files. - April 11, 2020 at 9:03 pm #118083david_koganParticipant
But I need the vendor to do the Store Setup.
- April 11, 2020 at 10:38 pm #118117Sarmistha ChakrabortyMember
Hi,
Keep turn-on the “Disable Store Setup Widget”.
Add the code in your activated theme’s functions.php
add_filter('wcfm_thank_you_right_button_url','vendor_welcome_url_change'); function vendor_welcome_url_change($setup_url) { return site_url().'?store-setup=yes'; }
and add the css in your activated theme’s style.css
a.wcfm_registration_thank_you_dashbord_button{ display: none; }
Thanks.
- April 13, 2020 at 5:50 pm #118742david_koganParticipant
Both things you suggested don’t change anything in the behaviour.
The flow that I want to achieve is:
Vendor registration (needs to be confirmed) -> Thank you page (“in 24 hours we will activate your account”) -> Vendor can log in and then can set up his store.
After the vendor does a registration I get a blank page showing a 0 and the URL is:
/wp-admin/admin-ajax.php?vmstep=choose_membership
- April 13, 2020 at 6:35 pm #118749david_koganParticipant
Ok, I found the problem myself.
When you have no membership plans you have to do the following settings:
Membership Settings -> General -> Custom Thank You Page (to the page you want)
Membership Settings -> General -> Subscription First Step -> Choose Plan
– otherwise, it wants to choose the plan afterwards and because there are no plans to choose from it bugs out.
- AuthorPosts
- You must be logged in to reply to this topic.