Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Marketplace (WooCommerce Multivendor Marketplace) › Vendor Store Setup
- This topic has 4 replies, 2 voices, and was last updated 4 years, 7 months ago by orcansaygili.
- AuthorPosts
- April 21, 2020 at 4:29 am #121173orcansaygiliParticipant
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,
- April 21, 2020 at 12:56 pm #121267Sarmistha ChakrabortyMember
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 Pages2) 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 translateThanks.
- April 21, 2020 at 6:34 pm #121379orcansaygiliParticipant
Hi,
Store Vendor Setup uncessary fields:
SWIFT code
IFSC code
Support Setup Section
Store SEO Setup Section
Facebook, Twitter Setups
Store Social SetupOn 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,
- April 22, 2020 at 1:59 pm #121690Sarmistha ChakrabortyMember
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.
- April 22, 2020 at 3:35 pm #121746orcansaygiliParticipantThis reply has been marked as private.
- AuthorPosts
- You must be logged in to reply to this topic.