Best Multi Vendor Marketplace Plugin for WordPress › 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, 8 months ago by
WCFM Forum.
- AuthorPosts
- November 6, 2018 at 7:18 am #35914
samsun34567
ParticipantHi,
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 #35946
WCFM Forum
MemberHi,
What you want to change?
Thank You
- November 6, 2018 at 3:07 pm #35955
samsun34567
ParticipantOkay 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 #36103
WCFM Forum
MemberHi,
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 #36134
samsun34567
ParticipantGreat!
Where exactly do I add this code in?
- November 8, 2018 at 10:52 am #36136
WCFM Forum
MemberHi,
Add this code in your child theme’s functions.php
Thank You
- November 8, 2018 at 11:19 am #36141
samsun34567
ParticipantThanks a lot!! You guys are the best!
- November 9, 2018 at 10:48 am #36219
WCFM Forum
MemberYou are welcome 🙂
- AuthorPosts
- The topic ‘How to customize store setup wizard CSS’ is closed to new replies.