Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Marketplace (WooCommerce Multivendor Marketplace) › Remove and Customize Steps from Store Setup
Tagged: bank transfer, customize, payment method, remove, SEO, social, step, store setup, store setup wizard, wizard
- This topic has 1 reply, 2 voices, and was last updated 4 years, 9 months ago by Ramamurthy Krishnan.
- AuthorPosts
- February 4, 2020 at 2:06 am #105266contatoappParticipant
Hi. I wanted to remove some specific steps for the store setup widget, also do edit one. I don’t want to completely disable it because some of the steps would be useful to go through. I’ve seen from this thread how to disable the SEO step: https://wclovers.com/forums/topic/how-remove-seo-step-from-vendor-registration/
How can I do the same for the others? I want to remove Support, Seo and Social.
And for customize, I’d like to remove IBAN, Swift Code and IFSC Code from under “Bank transfer” on the Preferred Payment Method step.
- February 4, 2020 at 2:48 am #105274Ramamurthy KrishnanKeymaster
Hi @contatoapp,
Please use the below code to remove Support, Seo and Social steps from store setup:
add_filter('wcfmmp_store_setup_steps', 'remove_seo_tab'); function remove_seo_tab($steps) { unset($steps['seo'], $steps['social'], $steps['support']); return $steps; }
And use the below code to remove IBAN, Swift Code and IFSC Code from under “Bank transfer”:
add_filter( 'wcfm_marketplace_settings_fields_billing_bank', 'remove_store_setup_bank_fields' ); function remove_store_setup_bank_fields($wcfmmp_settings_fields_billing) { unset( $wcfmmp_settings_fields_billing['iban'], $wcfmmp_settings_fields_billing['swift'], $wcfmmp_settings_fields_billing['ifsc'] ); return $wcfmmp_settings_fields_billing; }
Thanks,
- AuthorPosts
- You must be logged in to reply to this topic.