WP User Manager
Forum Replies Created
-
How did that work for you?
This code should work for you ??
https://gist.github.com/polevaultweb/bc44a824f158d6acfc736a41c5a74303Custom validation is possible! Check out this example.
Are you using the Custom Fields addon?
- This reply was modified 5 years, 5 months ago by WP User Manager.
Thanks for the bug report, I’ll get this fixed up in the next version. Are you all activated ok now?
1) The custom fields should display on the profile page, and they should be on the profile edit screen – however, a bug in Custom Fields stopped that from happening, but that has been fixed in Custom Fields v2.0.5 just released.
2) You want to be looking at the customizing the
wp-user-manager/templates/forms/form-account.php
andwpum-custom-fields/templates/forms/custom-group-form.php
templates using these guides.3) That would require some extra development. If you send me a ticket via https://wpusermanager.com/support/open-support-ticket/ I can point you in the right direction
Hope that helps, let me know if you need anything else
Hi David, you are welcome!
There isn’t any functionality in the plugin at the moment to redirect logged in users, when they visit the login or register page, to the account page.
I’ll look to add this setting in the future, but for now, here’s a code snippet to accomplish this.
If your ‘redirect after login’ page is not the account page, then change this line:
wp_redirect( get_permalink( wpum_get_core_page_id( 'account' ) ) );
to
wp_redirect( wpum_get_login_redirect() );
Hope that helps!
- This reply was modified 5 years, 5 months ago by WP User Manager.
- This reply was modified 5 years, 5 months ago by WP User Manager.
Forum: Plugins
In reply to: [WP User Manager - User Profile Builder & Membership] Change sidebar widthThanks!
Are you referring to the width of the sidebar on the account screen?
This can be altered with CSS in your theme’s stylesheet, something like:
.wpum-account-page .wpum_one_third { width: 48%; } .wpum-account-page .wpum_two_third.last { width: 48%; }
But changing the width and style as you see fit.
As you have customized the form by adding ‘Description’ and ‘Website’ to the Default registration form section in https://joxi.net/EA4KoP5coEKM12, you also need to either add the username or email field too.
This has been fixed in version 2.1.10, just released! ??
Great stuff ??
A ‘Homepage’ option has been added to the redirect after login, logout, and registration settings in 2.1.9, released just now ??
Forum: Plugins
In reply to: [WP User Manager - User Profile Builder & Membership] Excluded usernames listThis has been fixed in 2.1.9, released just now ??
- This reply was modified 5 years, 6 months ago by WP User Manager.
Thanks for your kind words!
Yep, this is possible – take a look at this doc https://docs.wpusermanager.com/article/142-setting-fields-as-required
Forum: Plugins
In reply to: [WP User Manager - User Profile Builder & Membership] Logged in user profileTurned out the
/profile
page slug was being intercepted by something else in the permalink routes, which meant it would redirect to the posts page.Changing the page slug to something else, eg.
/my-profile
fixed the issue.