-
Author
-
August 8, 2016 at 18:27 #131661seandonahoeParticipant
Hi there,
First I want to say how much I love BuddyApp, one of the best themes I have ever worked on and perfect for so many webapp projects we use.
I am having a small issue though with the Facebook login. I have set up the app with Facebook as suggested and that is all fine. The problem is that when someone logs in with Facebook it logs in but does not redirect to the members area. If i hit the button again it tells me that I am “Already Logged In” so it does appear that it is working.
Second problem and this may be an additional feature that I would like to pay for if needed. It seems that this Facebook Login only works when the Facebook account email is the same as the registered users email. That’s cool, but would there be a way once inside to connect a users Facebook to their account to associate them together.
That way the account gets the Avatar from Facebook (a lot better than the mystery man grey default) and they can then login with their Facebook account later.
Let me know and if that requires a little extra fee then I am happy to pay 😉
And one last thing. What are you using for this support center / knowledge base. It’s very good compared to many WordPress support systems I have seen and would like to see about using this in place of Kayako (which sucks)
Regards
Sean Donahoe
August 9, 2016 at 20:32 #131821LauraModeratorHello, will assign the ticket to a higher support level who can help and advise you in your query.
Thanks! ?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
August 10, 2016 at 17:09 #131909RaduModeratorHi,
If you want to redirect all users to their profile after login paste this funciton to wp-content/themes/buddyapp-child/functions.php
COPY CODEadd_filter( 'bp_login_redirect', 'bpdev_redirect_to_profile', 11, 3 ); function bpdev_redirect_to_profile( $redirect_to_calculated, $redirect_url_specified, $user ){ if( empty( $redirect_to_calculated ) ) $redirect_to_calculated = admin_url(); //if the user is not site admin,redirect to his/her profile if( isset( $user->ID) && ! is_super_admin( $user->ID ) ) return bp_core_get_user_domain( $user->ID ); else return $redirect_to_calculated; /*if site admin or not logged in,do not do anything much*/ }
The facebook login & register feature works as you need… maybe you have forgot to enable fb register check in wp-admin -> appearance -> theme options
All should be on.
We are using an custom solution that has been developed based on Kleo theme.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.