Forum Replies Created
-
AuthorPosts
-
sourov aminMember
Hi,
It seems redirection is configured by another plugin (S2Member in your case).
You can deactivate the plugin or the redirection feature of that plugin.
Or can use UMP add-on “Switch Filter & Action Hooks” and integrate with a different plugin if you want to configure the redirection settings there.Thanks!
sourov aminMemberHi,
Do you mean more than 100 users on the first page or 100+ users altogether?
The list can show more than 100 entities obviously, but you have to go to the “Next” page or numbered page. For now, the maximum capacity of displaying on one page is 100.Thanks!
sourov aminMemberHi,
It can happen that some other script or plugin is blocking the redirection triggered by User Meta.
It would be better if it can be checked from the inside. Is it possible to email the issue at support(at)user-meta.com better with the credentials of a temp admin, so the issue can be checked?Thanks!
sourov aminMemberHi,
Sorry for the inconvenience.
Try to activate the second license now.
Let me know if that doesn’t work.Thanks!
sourov aminMemberHi,
Please try increasing the values of the following variables in your .htaccess file.
max_input_vars
memory_limit
post_max_sizeThanks!
sourov aminMemberHi,
Can you please describe the issue in a more detailed way?
Thank you!
sourov aminMemberHi,
You can actually write any HTML with links and other tags in the “Content” box of the “Consent” field. So you can easily add the terms and conditions or privacy policy links in one place.
Also, thank you for the suggestion. But probably these links you mentioned are not changed a lot in a site. So that feature can make things complicated.
Thanks!
sourov aminMemberYes, all the inputs through User Meta plugin are sanitized with standard WordPress methods.
sourov aminMemberHi,
You can use Custom field from “User Meta >> Advanced Fields >> Custom Fields” for first or last name if you want to apply some custom validation. Must put “first_name” and “last_name” as Meta Key for these fields. Also, need to assign a regex pattern (for example:
[a-zA-Z-. ]+
) based on your needs.Thanks!
sourov aminMemberHi,
You can try adding the following code to function.php or any plugin file.
add_filter( 'pre_user_login' , 'modifyUserName' ); function modifyUserName( $user_login ) { if(!empty($_POST['first_name']) && !empty($_POST['last_name'])){ $user_login = $_POST['first_name'].'-'.$_POST['last_name']; } return $user_login; }
sourov aminMemberHi,
Should be within a month.
Thanks!
sourov aminMemberHi,
You can add separate profile forms with password or email fields only and add button links to these. That will serve the purpose. But yes, it would nice to have ready to use password changing form. Thank you for the suggestion. We will consider to add the feature.
Thanks!
sourov aminMemberHi,
Thank you for pointing the issue and the suggestion.
We will work on that and add that feature you suggested in the future version.Thanks!
sourov aminMemberHi,
– If the two users upload the file with the same filename, the later file would take an extended unique number with the filename based on the time uploaded.
– For the simplicity reason and to differentiate site contents from user contents, user uploaded files are stored in “file” folder. Yes, it could be stored in regular WordPress directories. But the defined file path for the plugin is “file” directory. It would great to know if there any specific reason why the file should be stored in “/wp-content/year/month” directory? Also, is storing in the “file” folder make any difficulties for you?Thanks!
-
AuthorPosts