10179 comments found.
Please check my reply. Thanks!
Hi;
This is a customer request 
there is a plugin new released name is ‘svg avatar generator’
me and many customers ( please look in that plugin’s comments) want that you guys work together to make avatar creation compatible with userpro. So , ppl will create and use to avatar after registrate.
It will be best addon in codecanyon if you guys do it 
best regards
I’ve offered that to him
Thanks~ Looking forward to it
Thank you , it is compatible now
Yes. 
Great Support ! Great Forum ! five stars 
I forgot! great plugin 
Thank you! 
Is there a way to use this in conjunction with buddypress? I like the way your profiles look way better! Ive tried using bp-xprofile custom field type, but cant seem to create the users profile the way that i would like? Right now in buddypress the profile for a user is generated in a tab that seems to grab the info from the “profile fields” section in wordpress. Is there a way to make it so that the profile grabs the userpro profile template instead? I am a newbie so im just trying to get a better understanding of this plugins capabilities before i buy. I stil want to use most of buddypress’s design/functionality, but if there is a way to combine this with your plugin’s look, now we are in business. Also, is there a way i could combine the login/registration pages/options from buddypress and your plugin? I like buddypresses layout, but your plugin has way more options (badges, social media fields, etc) that the user can choose from. I want to be able to categorize all my users by their likes/dislikes location, age, etc if possible. Sorry for all the questions, or if they arent making sense, like i said im just a newbie and trying to gather as much info as i can before purchasing what looks to be like a god-sent plugin! Thanks in advance for any additional info.
- If your buddypress profile tab accepts shortcodes, basically yes you can integrate userpro profile page into it. UserPro uses shortcodes so it’s integration -ready to any place (That accepts shortcodes) what do you mean by combining registration/login? I like to take it step by step with you, to simplify things and not complicate the procedure. Thanks!
let me see if i can explain myself a little better, im a newbie so bear with me. So when i install buddypress, a “profile fields” link is added to the “user” section. The profile fields seems to be a place where you can add certain things like, name, age, email, etc. Then when this information is filled out, it is shown on your profile page, which also has a tab called profile. In the profile tab, its titled “base”. I am not sure why the title, its the default title they give you. Anyway, If possible, I would love to be able to do either of the these two things, 1) be able to place your profile section inside of buddypresses profile base, so thatwhen a user visits a profile, they see your fields rather than buddypresses. 2. Be able to place your profile section on the profile page, but not inside the profile tab, preferably in the box that contains the users picture. You can get a better understanding of what i mean by the “profile page” vs “profile tab” vs “base” by visiting this link, http://thedancerss.com/members/alex/profile/ . Anyway, I hope this helps giving you a better picture of my goals as far as the website is concerned. In a dream world/nutshell, i would love to combine your profile fields/badges plugin with buddypress and achievements so that users can essentially earn points/badges/awards for being active on the site. I realize i am probably asking for a lot, and i am rather inexperienced, I am just in the research phase, so any extra help you may provide will be greatly appreciated. Thanks in advance,
Alex
no reply yet? Im searching through all of these comments, and it seems many people have the same question as far as integrating this with buddypress. I understand your plugin uses shortcodes, so if i were to purchase this plugin, would i be able to obtain enough support to learn how to combine the two profile pages, so that i can still use all of the buddypress tabs, but use your profile details and “twitter-styled” profile background image/links? I wish there was a way i could know how to do it and test it out before i buy, but i cant seem to find the answer here….am i not searching hard enough, or are you infact keeping this “how to” info…? Thanks in advance
Hello,
Please tell me how I can show values from user_meta on profile pages.
Thanks
Hi there! 
You can use PHP method (API method explained here: http://wpuserpro.com/userpro/forums/topic/userpro_profile_data/
Or you can use shortcode method (Displaying custom fields using shortcodes) explained here:
http://wpuserpro.com/userpro/forums/topic/show-personalized-profile-data/And any help can be offered actively in our public support forum 
Thanks for the php & shortcode options, but is there any way to show from the UserPro Groups & Fields settings page. I can see the fields as available on the side where fields show for usage. But when I drag & drop one of the fields, no data shows
What do you mean?
I do not quite understand do you mind to post a support thread with screenshot or more info to help me provide an appropriate response.
headed there now. Thanks
You’re welcome.
I still didn’t get any reply at the forum: http://wpuserpro.com/userpro/forums/topic/user_meta-on-profile/ – any thoughts?
Replied 
replied 
replied… 
Getting this on register and login page, before the facebook button. If I remove the Facebook App ID from setup all is ok.
FB.init({ appId : “24XXXXXXXXXXX60”, // Set YOUR APP ID status : true, // check login status cookie : true, // enable cookies to allow the server to access the session xfbml : true // parse XFBML });
FB.Event.subscribe(‘auth.authResponseChange’, function(response) { if (response.status === ‘connected’) {
//SUCCESS
} else if (response.status === ‘not_authorized’) {
//FAILED
} else {
//UNKNOWN ERROR
} });
};
// Login user function Login(element){
var form = jQuery(element).parents(’.userpro’).find(‘form’); userpro_init_load( form );
if ( element.data(‘redirect’)) { var redirect = element.data(‘redirect’); } else { var redirect = ’’; }
FB.login(function(response) { if (response.authResponse){
// get user info FB.api(’/me/picture?type=large’, function(response) { profilepicture = response.data.url; });
FB.api(’/me’, function(response) {
jQuery.ajax({ url: userpro_ajax_url, data: “action=userpro_fbconnect&id=”response.id“&username=”response.username“&first_name=”response.first_name“&last_name=”response.last_name“&gender=”response.gender“&email=”response.email“&name=”response.name“&link=”response.link“&profilepicture=”profilepicture“&redirect=”+redirect, dataType: ‘JSON’, type: ‘POST’, success:function(data){
userpro_end_load( form );
/* custom message / if (data.custom_message){ form.parents(’.userpro’).find(’.userpro-body’).prepend( data.custom_message ); }
/ redirect after form */ if (data.redirect_uri){ if (data.redirect_uri ==’refresh’) { document.location.href=jQuery(location).attr(‘href’) + ’?redirect=ok’; } else { document.location.href=data.redirect_uri + ’?redirect=ok’; } }
}, error: function(){ alert(‘Something wrong happened.’); } });
}); } else { // cancelled alert( ‘Unauthorized or cancelled’ ); userpro_end_load( form ); } },{scope: ‘email,user_photos’});
}
// Logout function Logout(){ FB.logout(function(){document.location.reload();}); }
// Load the SDK asynchronously (function(d){ var js, id = ‘facebook-jssdk’, ref = d.getElementsByTagName(‘script’)[0]; if (d.getElementById(id)) {return;} js = d.createElement(‘script’); js.id = id; js.async = true; js.src = ”//connect.facebook.net/en_US/all.js”; ref.parentNode.insertBefore(js, ref); }(document));
Your shortcode is being wrapped with AUTO paragraphs (Could be theme conflict/plugin adding that) please submit a support request and I’ll have a look at it asap
http://wpuserpro.com/userpro/forums/thank you very much, i disable the autop in function.php and all is working fine now.
You’re welcome 
Hi,
demo doesn’t work on my side :s keep clicking the sign in with (fb or twitter) and nothing happen 
Hi there! You should setup facebook and twitter app first
Send me your email if you need help
no, I am not a buyer… yet, just saying that when i fill details on demo to create account, it keep asking for username and email, facebook login gives me an error and twitter button don’t even work, nothing happen when clicking on it
But I really fancy your plugin (shame on me that i haven’t discovered it yet
)
I know you’re not a buyer, I’d like still to know the issue you are having when trying the demo. Can you email me that info to debug it for you?
sorry for being an a**e on my side just needed to remove codecanyon frame, it works like a charm
Thanks 
Hello, very nice plugin. Can I import user from a excel sheet or .csv file? Thanks in advance. Peter
Users standard wordpress user, if you do have a tool that import users from csv you can integrate them seamlessly with the plugin.
Hi. I will buy this product, it has everything what I need. I try demo and works fine everything. Great plugin. Just please help me with one.
Is it possible that on page “member direcoty” is only search bar? Without showing members? And you get results open in new tab or something, after you put in search field what people are you looking for?
Thanks
Yes this possible for sure. Post in the support forum, and I’ll post how to do it. Should be fairly simple! 
- This option is done! You can hide initial search results in member search and upon entering search query, it will show members. (Will be available from v1.0.63)
Hi
Pre-sale questions:
1. the posts made by users are the post comments or true blog posts?
2. is possible to allow logged user to made a blog post that, in order to be published, have to be accepted or edited by an admin? And, if the answer is yes, is possible to define which fields (post title, body, upload image/video, TAXONOMY) have to be complete? And is possible to made some field mandatory?
3. can the user (that have submitted the post) edits his posts (and the changes have to be accepted/edited by an admin in order to be published)?
Thank you for your time. Mattia
1) True blog posts 
2) Yes, posts are approved by admin first, by default. Post title and content are required. There’s not upload video feature, the rest is optional. (I assume you can make it required with little modification)
3) Frontend editing? Frontend editing of post is currently not possible.
Thank you for the replay. Since the point 3 is a crucial for me, have you planned to add this feature?
Mattia
Hi Mattia yes, but I am trying to find an elegant way to allow user to edit his pending posts, which I didn’t know this can be integrated in the plugin yet.
In backend WP does a lot of work, e.g. sorting and filtering posts, this would be overkill to add to the frontend.
Yes, I’m understand. Of course allowing registered user to edit their posts can dramatically boost the social features of your fantastic plugin. I have the fervent hope that this option will be available very soon…and is possible to have a date? 

Moreover, some free plugins that allow the fronted editing already exist (front-end editor as an example): could you take inspiration from these? 


Please let me known. Thank you very very much.
Mattia
Hi,
trying to login I get the following error: SyntaxError: JSON.parse: unexpected character
My password contains these characters: =!(*$
Best regards, Oliver
Hi there Trnrde, can you email me your wp-admin/FTP info to check this issue? Thanks~
Thanks for the feedback. Unfortunately I can not give away the login details. I eliminated all special characters from my password, but still can not login. Safari tells a litte bit more:
SyntaxError: JSON Parse error: Unrecognized token ’<’
I tried it with 1.0.60 and .62 – same error. Wordpress version is 3.8.1 and it is a fresh installation. Hope, this helps …
Best regards, Oliver
Oliver, try the following things:
- Disable all other plugins - Change your current theme
Try again now 
Okay, the theme Enfold is the culprit. I disabled it and now UserPro is working. Did you already encounter this problem with Enfold?
Best regards, Oliver
Oliver, no – but maybe it’s a custom version of Enfold? If you want me to check the conflict, send me the edited theme files as ZIP to my email and I’ll look at it
Hi, the error is gone, no more conflict with Enfold. I did a fresh install and everything works as expected. Thanks for the support, great plugin.
Best regards, Oliver
Thanks Oliver, remember to rate userpro
Some issues:
• the trial version is 1.0.62 but the version I bought is 1.0.60?
• when I try to validate the purchased version, not save the license key that I entered.
A message that says: “you are using a trial version”.
Procedure:
I turned it off the “plugin” and eliminated.
Then I installed the paid version and tried to activate
- To download the latest version, please click here: http://wpuserpro.com/userpro/customer_portal/ enter your purchase key and download, there’s a button saying “Get latest” on this item page, that takes you to latest version / updated plugin.
- When you try to validate purchased version, what error do you get? Thanks
No way. I tried what you suggested and nothing.
Actually, when I try to validate what happens is that entry code, I accept it, and nothing … again the message “You are using a trial version of UserPro plugin. If You Have Purchased the plugin, Please enter your purchase code to enable the full version. purchase You can enter your code here.”
Even tried a clean installation of wordpress and there is no way.
As I’m using a local server, also tried with an online server “bluehost” and no way…
Please give me the wp-admin details asap, I’ll fix this error for you 
Excellent! Now everything works fine! Thank you!
Thanks for the update.
And finally … buy it!
UserPro is much better than the other competitor (UPME).
Definitely recommend to the community!
Try it! 
Hi, I activated this plugin on a site i am building. The site has a maintenance mode page. Once i activated the plugin my dashboard WordPress admin login url would not work anymore and I was locked out. I had to deactivate my maintenance mode plugin in order to access the back-end of my site. How do i use a maintenance mode splash page so that the public can’t see my site, while still being able to login to my admin dashboard with UserPro?
Thanks
Hi there! Go to UserPro admin options and under Backend settings, please disable that option: Redirection & Backend Settings stop redirecting to frontend pages.
Hello. A simple question:
Does integrated with the plugin: “Modal Login Register Forgotten”?
http://codecanyon.net/item/modal-login-register-forgotten-wordpress-plugin/5433514
The UserPro offers modal login. What’s the integration for? 
You’re right!... Wonderful!
I’m testing the trial version right now. I have two issues:
1. When using the “popup-login / popup-register” class from the menu wordpress, modal window takes about 20 seconds to appear (firefox and chrome), (ie not tested yet).
2. I want to sign from a point page (any), and do not redirect me to any other.
For example, if income from “gallery” then enter the username and password, I stayed in “gallery” and not on user profile or otherwise.
DeluxeThemes: Your plugin is really good!
OK. Second question, does not matter. This plugin is a good example of how to do things.
The choice is very clear from the settings panel.
1) I’ve tested that class in my menu, and I didn’t notice this delay – I will try to reproduce this issue
2) The plugin gives you choice to refresh page after login or go to profile. It’s flexible. You do not need to change global option but also can do it via shortcode [userpro template=login force_redirect_uri=1] means redirect after page to same page.
Excellent! Now everything works fine! Thank you!
You’re welcome. 
Assalamualaikum Ahmed I recently using SWEET DATE theme for my website, it really good. However your plugin has an awesome features that I really need that can’t be reach with the theme only. Is it possible to integrate ur socialpro plugin with social features that available in SWEET DATE theme?
Ofcourse! It’s possible to do such integration.
UserPro depends on shortcodes, so replacing/managing it is easy
Hi, I want to sell membership. How can be Possible
Please post in the support forums. You do need a paid plugin integration
A plugin that can handles payments.
Great plugin, i see your demo, great job. i have a pre sales question is your plugin compatible and work together buddypress?
Thx 
Yes, works alongside buddypress without problem. You can try the demo.
I created custom fields for user questions which are listed in the user section of my backend. But I cant see these custom fields when I am using User Pro. You give the possibility to sync with Metadata fields but in the list of existing meta data there is no field from the original user registration form I have set up some weeks ago. Unfortunately we have populated the fields with data and dont want to loose the existing data. Can you help ?
Hi there! WP depends on USER META, the native user meta table so any custom field can be retrieved with get_user_meta() (It’s the native WP api/meta) so UserPro is being 100% compatible here. Can you tell me if your custom fields were created via update_user_meta?
I have now managed to sync the fields with the existing meta fields, but when I display the edit formular the fields are already populated with data like “field_52d3cdd7d8dbc” or “9ad0cd8066”. I can’t change the content of the fields. Here some screenshots: www.mushroom-magazine.com/pics/0/1.png www.mushroom-magazine.com/pics/0/2.png www.mushroom-magazine.com/pics/0/3.png Do you know whats wrong ?
Thank you for your interest in UserPro! I appreciate your time and willingness to make the most out of UserPro. However, please consider using the support forums to get support, as you will have a huge source of information/threads. I’ll be happy to assist you with any issue!
Hello,
I am currently using your demo version and I like what I see so far. However, I have a couple of questions.
1) Is there a way to disable the userpro login pages. I am running a woocomerce shop and I am required to use SSL. The login pages that userpro uses won’t activate my SSL which could cause me to fail my PCI scan.
I have synced to woocommerce but I only want one login area. Is there a way to disable your login functionality?
2) Is there a way to create custom sidebars for each individual profile? I have information for each practitioner I would like them to be able to include. Similar to how you have the blog posts on the demo.
3) The search functionality doesn’t seem to be working for me. Do I have to add specific parameters? If so, do you have documentation on how to do so?
Thanks, Manning
1) If you delete the frontend login pages, and disable backend login redirection – that disable the login page.
2) No, there’s not a built in feature that does that.
3) The support forums has a tutorial about adding custom filters. Which search does not work btw? http://wpuserpro.com/userpro/members/ here is a live demo.
*If you have certain difficulty with search, please post it on the forums – many thanks 