Issues on vendor registration page

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 – Ultimate Issues on vendor registration page

Viewing 4 reply threads
  • Author
    Posts
    • #60020
      shitT
      Participant

      Hello

      I have the following minor issues on the vendor registration page:
      – The city and state are not mandatory. How can I make these mandatory?
      – I cannot translate the registration custom fields. I use WPML. What could be the issue?
      – The terms and condition page is not saved. On the form, it would be nice to be able to click on “agree terms and conditions” and get the terms and conditions. Is it a bug in the new release? If not, how can this be fixed?

      Once again, your help would be greatly appreciated!

    • #60037
      pdishman
      Participant

      I would also like for the city and state to be required on the form. I have asked this before. It would make sense as you are requiring address fields
      Thank you!

    • #60226
      WCFM Forum
      Keymaster

      Hi,

      Please use this code snippet for the purpose –

      add_filter( 'wcfm_membership_registration_fields_address', function( $address_fields ) {
      	if( isset( $address_fields['city'] ) ) { 
      	  $address_fields['city']['custom_attributes'] = array( 'required' => 1 );
      	}
      	if( isset( $address_fields['state'] ) ) { 
      	  $address_fields['state']['custom_attributes'] = array( 'required' => 1 );
      	}
      	return $address_fields;
      }, 50 );

      Thank You

    • #62065
      shitT
      Participant

      Hi,

      Problems all solved. Thanks a lot!

    • #62427
      WCFM Forum
      Keymaster

      Great .. thanks for the update 🙂

Viewing 4 reply threads
  • The topic ‘Issues on vendor registration page’ is closed to new replies.