Hi,
Please add this snippet to your site for the purpose-
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;
});
Add custom code(s) to your child theme’s functions.php
In case you do not have child theme then add those using this plugin –?https://www.ads-software.com/plugins/code-snippets/
Thank You