-
Author
-
January 4, 2016 at 20:32 #96237HDcmsParticipant
Hi,
How to redirect the member profile that connects in the theme settings:
Custom redirect link / Custom redirect link
RegardsJanuary 4, 2016 at 20:43 #96245sharmstrModeratorInstall Peters Login Redirect plugin. Set your custom redirect to WP default, then in Peters plugin settings, set the login redirect to
http://www.yoursite.com/members/[variable]username[/variable]
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 4, 2016 at 20:55 #96253HDcmsParticipantHI,
Thank you for this quick response 🙂
I hoped a supported by the theme to avoid loading additional plugin 🙁January 4, 2016 at 21:27 #96256sharmstrModeratorUnderstand, but Peter’s login redirect is the Kleo suggested plugin for doing that.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 6, 2016 at 00:16 #96507wd7080Participantadd this to your child theme functions.php
COPY CODEfunction jessicana_redirect_page( $redirect_to, $request, $user ) { $redirect_to = bp_core_get_user_domain($user->ID) . 'profile/'; return $redirect_to; } add_filter('login_redirect', 'jessicana_redirect_page', 11, 3);
and you will get users redirected to their profile page.
January 6, 2016 at 00:24 #96511sharmstrModeratorEven with FB login?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.