Sourov Amin
Forum Replies Created
-
Hello,
User Meta form inherits your theme’s styling. If you want to apply any specific styles, you can do that with “Form Class” and “Submit Button Class” options through form’s “Settings”.
Thanks.
Hello,
Can you share a screenshot of your CSS input in User Meta form?
To change any form design, you can simply put your preferred CSS class name in “Form Class” and “Submit Button Class” options through form’s “Settings”.
Thanks.
Hello,
You are missing the form name parameter.
Try:add_action( "user_meta_after_user_update", "user_meta_after_user_update_function", 10, 2 ); function user_meta_after_user_update_function( $response, $formName ){ global $userMeta; if ( $formName == "formname" ){ echo $userMeta->jsRedirect( "https://test.com" ); } }
That should do the job.
Thanks.
Forum: Plugins
In reply to: [User Meta - User Profile Builder and User management plugin] UploadsHello,
Yes, these are possible with User Meta Pro.
Thanks.
Hello Pixelzen,
To add these User Meta fields in the frontend, put these in a form and use the form as user profile using shortcode. You can also put the shared field in user backend profile from “User Meta >> Settings >> Backend Profile” (available in pro version).
Thanks.
Hello,
Yes, you can customize user email notification and add UMP field data there. Also can set different copy of emails for different roles. But most of these are PRO features.
Thanks.
Let me know if your problem is not solved.
Hello,
User Meta itself does not clean some of its data, in case you re-install the plugin again, you may not want to start from the scratch. Also, it is helpful for version updates. However, if you really want to get rid of these data, you can choose some other ways.
Any plugin like Advanced Database Cleaner can be the solution. For the note, all User Meta settings and options are stored in WordPress ‘option’ table and the prefix of these options is ‘user_meta’.
In another way, running the code below will erase this plugin’s data.
$all_options = wp_load_alloptions(); foreach ( $all_options as $name => $value ) { if ( substr( $name, 0, strlen('user_meta') ) === 'user_meta' ) { delete_option( $name ); } }
And the feature of DB cleaning on uninstallation will be considered in the future updates.
Hello,
Could it be that your system doesn’t have the
administrator
role? Or the default WPadministrator
role has been removed or renamed somehow?What happens here, the code tries to get the
administrator
role but fails to find that and returns null, what is causing the error.Thanks.
Hello,
Most likely the two plugins use different hooks to trigger the admin email notification. For user meta frontend profile update, the email notification is triggered from a custom action hook. The hook is:
user_meta_after_user_update
Thanks.
Actually, you have to change the database structure in order to use WordPress default Website field. But you can ignore the field and create a new URL field from the Extra Fields and make it shared. Add the field both in frontend-backend, and hide the actual website field from the backend from User Meta >> Settings >> Backend Profile. That should do your job.
Okay, It’s not a problem produced by this plugin at all. By default, WordPress user database supports highest of 100 characters for Website field. Also, it’s not a problem of subfolder in URL, if you exceed 100 characters in the Website field the whole process doesn’t save any data to the user database but it shows the success message as there may be some flaws in WordPress Website field’s validation itself.
You can fix this in front-end registration with the User Meta plugin. Just put a higer value of Max Char like 500 from Website field’s Advanced tab.
Can you deactivate this User Meta plugin for a moment and try to add that specific user from the backend just to be sure whether the plugin causing any problem in this regard or not.
Hello,
Please send an email to support(at)user-meta.com regarding this issue.
Thanks.
- This reply was modified 5 years, 10 months ago by Sourov Amin.
Hello,
What it is: you can’t add a new user with specific details or you can’t add any new user at all?
Thanks.