Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Marketplace (WooCommerce Multivendor Marketplace) › How to customize store setup wizard CSS
- This topic has 7 replies, 2 voices, and was last updated 6 years ago by WCFM Forum.
- AuthorPosts
- November 6, 2018 at 7:18 am #35914samsun34567Participant
Hi,
As title, how do I do this –> Also is it possible to take out some of the input fields in the store setup wizard?
It’s OK if that’s too much trouble. I could use CSS to hide it.
- November 6, 2018 at 2:44 pm #35946WCFM ForumMember
Hi,
What you want to change?
Thank You
- November 6, 2018 at 3:07 pm #35955samsun34567Participant
Okay so first of all I’d like to change the font style and also some font weight.
Second I’d like to take out some input fields such as county/state in address section and also banking info such as IBAN/SWIFT etc.
Thanks!
- November 8, 2018 at 8:16 am #36103WCFM ForumMember
Hi,
Kindly add this codes-
function wcfm_marketplace_settings_fields_0211_billing_bank( $bank_fields, $vendor_id ) { if( isset( $bank_fields['swift'] ) ) { $bank_fields['swift']['class'] = 'wcfm_custom_hide'; $bank_fields['swift']['label_class'] = 'wcfm_custom_hide'; } if( isset( $bank_fields['iban'] ) ) { $bank_fields['iban']['class'] = 'wcfm_custom_hide'; $bank_fields['iban']['label_class'] = 'wcfm_custom_hide'; } return $bank_fields; } add_filter('wcfm_marketplace_settings_fields_billing_bank', 'wcfm_marketplace_settings_fields_0211_billing_bank', 50, 2 ); function wcfm_marketplace_settings_fields_0410_address( $address_fields ) { if( isset( $address_fields['state'] ) ) { $address_fields['state']['class'] = 'wcfm_custom_hide'; $address_fields['state']['label_class'] = 'wcfm_custom_hide'; } if( isset( $address_fields['country'] ) ) { $address_fields['country']['class'] = 'wcfm_custom_hide'; $address_fields['country']['label_class'] = 'wcfm_custom_hide'; } return $address_fields; } add_filter( 'wcfm_marketplace_settings_fields_address', 'wcfm_marketplace_settings_fields_0410_address' ); add_filter( 'wcfm_membership_registration_fields_address', 'wcfm_marketplace_settings_fields_0410_address' );
“I’d like to change the font style and also some font weight.”
– just add your CSS for the purpose.Thank You
- November 8, 2018 at 10:38 am #36134samsun34567Participant
Great!
Where exactly do I add this code in?
- November 8, 2018 at 10:52 am #36136WCFM ForumMember
Hi,
Add this code in your child theme’s functions.php
Thank You
- November 8, 2018 at 11:19 am #36141samsun34567Participant
Thanks a lot!! You guys are the best!
- November 9, 2018 at 10:48 am #36219WCFM ForumMember
You are welcome 🙂
- AuthorPosts
- The topic ‘How to customize store setup wizard CSS’ is closed to new replies.