Vendor Regestration redirect

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Tagged: 

Viewing 5 reply threads
  • Author
    Posts
    • #118046
      david_kogan
      Participant

      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.

    • #118081

      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.
    • #118083
      david_kogan
      Participant

      But I need the vendor to do the Store Setup.

    • #118117

      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.

    • #118742
      david_kogan
      Participant

      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

    • #118749
      david_kogan
      Participant

      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.

Viewing 5 reply threads
  • You must be logged in to reply to this topic.