Vendor Registration Plans

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!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WCFM Vendor Registration Plans

Viewing 3 reply threads
  • Author
    Posts
    • #139206
      sydney
      Participant

      I do not want users to see the option for selecting a membership plan. How do i hide the plans tab on membership registration form/process.

      Attachments:
      You must be logged in to view attached files.
    • #139477

      Hello,

      That means you have only one membership plan n your site?
      Can you confirm for us this membership plan is a “free plan” or “paid plan”?

      Thanks.

    • #139498
      sydney
      Participant

      No I have 2 plans. When a user clicks a button, they will be directed straight to the registration page and they register for the specific plan they chose therefore there is no need for then to see the plans tab.

    • #139712

      Hello,

      By-default we don’t have this kind of flexibility.
      You can try this code in your theme’s functions.php –

      add_action('wp_footer',function(){
      	if(isset($_GET['vmstep']) && $_GET['vmstep'] == 'registration')
      	?>
      	<style type="text/css">
      		ol.wc-progress-steps li:first-child {
      			display: none !important;
      		}
      	</style>
      	<?php
      });

      Thanks.

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