Giri
Forum Replies Created
-
AuthorPosts
-
Hi Joy,
I’m guessing that linked to wp-login.php
You can redirect that part by checking the block wp-login setting in UsersWP > Login tab
Thanks
Hi Trex,
That seems like a bug from the recent update. Could you give me the ftp details? So I can look into the issue.
Thanks
This reply has been marked as private.This reply has been marked as private.Yes please post login details in a private reply. So i can see the problem.
Thanks
Ok Thanks.
Few more questions.
1) When you mean users page, are you talking about the /users page?
2) If yes, then you should know custom fields are hidden in the grid view. Have you tried the list view?
Can you post your users page link in a private reply?
Thanks
Thats weird.
Did you overwrite existing plugin code?
If yes then you need to deactivate and reactivate the plugin again.
The plugin creates a new column in the table.
Try refreshing the page after you setting for_admin_use value. If it is set to yes, then most likely its a bug.
Give me the field name and type. I’ll try in my local.
Show in what locations?: => “Users page”
Yes I know what you mean 🙂
You probably not set the field to public or doesn’t enable the location in show_in
Let me know if thats really a bug.
Thanks
Hi there,
Thanks for the feedback.
I have added the feature you asked.
You can download the development copy from here and use it.
https://github.com/mistergiri/userswp
Thanks
September 21, 2017 at 2:01 pm in reply to: Getting certain registration fields to appear in bbPress Author section #464You are welcome
Hi there,
Thanks for your patience.
I’m about to work on this feature. But I need few details for better understanding of your requirement.
I can add a “for admin use only” setting field in the form builder. But can you explain how you want it to behave?
Lets call this custom field X and you have set this to “for admin use only”.
Do you want this X field available in register form and disable only the editing privilege for the user?
OR
You want this field completely available only to admin? Meaning user cannot submit any value for this field but only set by you.
If it is the latter, can you give me an example / use case ?
Thanks
Hi Michael,
Please read the page especially the “Email Debugging” section.
https://userswp.io/userswp-1-0-7-released/
If you still need help let me know.
Thanks.
September 21, 2017 at 12:21 pm in reply to: Getting certain registration fields to appear in bbPress Author section #459Hi Trex, This has nothing to do with UsersWP.
You can most probably use bbPress hook to make it work.
Like this.
add_action('bbp_theme_after_reply_author_details', 'bbp_uwp_meta'); function bbp_uwp_meta() { $user_id = bbp_get_reply_author_id(); $value = uwp_get_usermeta($user_id, 'uwp_account_email', ''); echo $value; }
Change email in the uwp_account_email with your custom field key.
Thanks
-
AuthorPosts