Vendor name danish letter missing

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WC Marketplace Vendor name danish letter missing

Viewing 1 reply thread
  • Author
    Posts
    • #108961
      Licens
      Participant

      Hi thanks for a great plugins
      We have bod marketplace-ultimate, but there is an issue:
      Vendor name can’t contain æøå with is a huge problem in denmark.
      Is there a place in a function or script where I can correct it, so it will accept æøå?

    • #109006

      Hello,

      Try this code to your child theme’s functions.php

      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;
      });

      You can check this topic : https://wclovers.com/forums/topic/store-name-problem/#post-108057

      Thanks.

Viewing 1 reply thread
  • You must be logged in to reply to this topic.