Vendor Store Setup

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!

Viewing 4 reply threads
  • Author
    Posts
    • #121173
      orcansaygili
      Participant

      Hello,

      I have three problems;

      1) Become a Vendor Link does not work at the login page please let me know how to fix it

      2) I have too many unnecessary fiedls during vendor store setup. Is there any way of re-configuring it?

      3) I have translated all the plugins i am using but Login or Register titles are still in english

      I will be glad if you can enlighten me

      Regards,

    • #121267

      Hello,

      1) Become a Vendor Link does not work at the login page please let me know how to fix it
      >>Possibly you are missing WCFM Membership, it’s essential for vendor registration with WCFM Marketplace.
      Please install this – https://wordpress.org/plugins/wc-multivendor-membership/
      If you already have this then be sure it’s pages are set at WCFM Page setting, check this at WCFM Admin Setting -> Dashboard Pages

      2) I have too many unnecessary fiedls during vendor store setup. Is there any way of re-configuring it?
      >>Which fields you don’t want in store setup?

      3) I have translated all the plugins i am using but Login or Register titles are still in english
      >> For translation use Loco translate “Loco Translate” plugin https://localise.biz/wordpress/plugin/beginners
      You will find Login” and “Register” text Loco Translate -> Plugins -> WooCommerce -> select string and translate

      Thanks.

    • #121379
      orcansaygili
      Participant

      Hi,

      Store Vendor Setup uncessary fields:

      SWIFT code
      IFSC code
      Support Setup Section
      Store SEO Setup Section
      Facebook, Twitter Setups
      Store Social Setup

      On the other hand, while doing vendor registration “Store Name” field does not support Turkish Characters. Hope we can make it work it Turkish letters too.

      Best Regards,

    • #121690

      Hello,

      To remove fields from vendor store setup, Add this code to your child theme’s functions.php
      In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/

      add_filter('wcfmmp_store_setup_steps','remove_some_store_step');
      function remove_some_store_step($steps) {
      	unset($steps['support']);
      	unset($steps['seo']);
      	unset($steps['social']);
      	return $steps;
      }
      add_filter('wcfm_marketplace_settings_fields_billing_bank','remove_fields_wcfm_marketplace_settings_fields_billing_bank',10,2);
      function remove_fields_wcfm_marketplace_settings_fields_billing_bank($fields,$vendor_id){
      	if(isset($_GET['store-setup'])) {
      		unset($fields['swift']);
      		unset($fields['ifsc']);
      	}	
        return $fields;
      }

      Regarding Turkish letters,

      add_filter( 'wcfm_membership_registration_fields', function( $store_name_fields ) {
      	if( isset( $store_name_fields['store_name'] ) ) {
      	  $store_name_fields['store_name']['class'] = 'wcfm-text wcfm_ele';
      	}
      	return $store_name_fields;
      });
      
      add_filter( 'wcfm_marketplace_settings_fields_general', function( $store_name_fields ) {
      	if( isset( $store_name_fields['store_name'] ) ) {
      		$store_name_fields['store_name']['class'] = 'wcfm-text wcfm_ele';
      	}
      	return $store_name_fields;
      });

      Thanks.

    • #121746
      orcansaygili
      Participant
      This reply has been marked as private.
Viewing 4 reply threads
  • You must be logged in to reply to this topic.