• Resolved radik19

    (@radik19)


    Hey. On the seller’s registration page. I can’t type Russian letters in the “Store Name” field. These letters on my keyboard (Russian keyboard) are located on the buttons: < > ” [ ] . , ; ‘ { }

    How can this be fixed?

    • This topic was modified 4 years, 11 months ago by radik19.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WC Lovers

    (@wclovers)

    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

    Thread Starter radik19

    (@radik19)

    Thanks it works.

    Great plugin, good job.

    Plugin Author WC Lovers

    (@wclovers)

    You are welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘I can’t type the letters’ is closed to new replies.