Forum Replies Created
- AuthorPosts
Дмитрий Шаханов
ParticipantThank you!
I have one more questions.How can I move a custom menu to submenu
And I want to disable progress bar
http://prntscr.com/oc08ssДмитрий Шаханов
ParticipantI need to disable only Address.
Location should be visible.Дмитрий Шаханов
ParticipantWell, then I need to turn off this block completely.
Дмитрий Шаханов
ParticipantThank you!
But I want to disable state.
I change (city to state) code, but I have issue fieldfunction wcfm_marketplace_settings_fields_hide( $address_fields ) {
$address_fields = wcfm_hide_field( ‘street_1’, $address_fields );
$address_fields = wcfm_hide_field( ‘street_2’, $address_fields );
$address_fields = wcfm_hide_field( ‘zip’, $address_fields );
$address_fields = wcfm_hide_field( ‘state’, $address_fields );
return $address_fields;
}add_filter( ‘wcfm_marketplace_settings_fields_address’, ‘wcfm_marketplace_settings_fields_hide’ );
add_filter( ‘wcfm_membership_registration_fields_address’, ‘wcfm_marketplace_settings_fields_hide’ );
add_filter( ‘wcfm_wcmarketplace_settings_fields_customer_support’, ‘wcfm_marketplace_settings_fields_hide’ );- AuthorPosts