Sourov Amin
Forum Replies Created
-
Hello,
Make sure you add at least one option in the checkbox field configuration. User Meta saves checkbox data using option labels or the values. With no option, no data is saved.
Thanks.
Hello,
You need to add some codes, something like below in the function.php or in a plugin file.
add_filter( 'user_meta_countries_list', 'my_country_list_modification', 10, 1 ); function my_country_list_modification( $countries ){ // To delete countries from the list (deleting Serbia and Montenegro) $countries = array_diff( $countries, ['Serbia and Montenegro'] ); // To add new countries to the list (adding New Country 1 & 2) $countries['KEY1'] = 'New Country 1'; $countries['KEY2'] = 'New Country 2'; // Do other codes based on your needs return $countries; }
If you find this complicated, then just wait a bit for the next Development release. We will modify the list there.
Hello,
Thank you for noticing. We will fix that ASAP and add the modified countries list in the next release. But you can use the filter hook
user_meta_countries_list
to edit the list where array$countries
is to be modified with Country Code as the key and Country Name as the value.Thanks.
Hello Kurt,
User Meta can disable wp-login.php. It’s a feature of the plugin. But you can keep wp-login.php active like before. It’s your choice. You can change this setting from User Meta >> Settings >> Login.
If that doesn’t work you can always contact the support there.You need to use
[user-meta-profile form="Form_Name"]
shortcode for the profile page including user profile update. Your mentioned shortcode[user-meta type=public form=”Form_Name”]
is for showing public profile if user_id parameter provided as GET request.
https://user-meta.com/documentation/user-profile/, this documentation might be helpful.