tacomamama
Member
Posted 7 months ago #
I am trying to use Mingle Forum, with Mingle for a simplified log in process.
When users log in through Mingle, they are automatically directed to their activity page. I would like to change this behavior and instead land them on the forum page. Is there any setting I can change to make this happen? Setting the log in page to "forum" just places the "activity" page on the forum page and strips out the forum.
Thanks in advance.
I'm also interested in this. Have you found a solution?
tacomamama
Member
Posted 7 months ago #
No, I decided to disable Mingle and go another way. (Using Theme my Login) Too bad, it has some other functionality that I like. Strange that Mingle Forum and Mingle can't work together.
MickeyRoush
Member
Posted 7 months ago #
Strange that Mingle Forum and Mingle can't work together.
Mingle Forum works with BuddyPress. I've been using that combination for sometime.
ashu2982
Member
Posted 4 months ago #
i was looking for same but could not found the answer. so tried to fix it myself
you have to make changes to plugin file in your plugin directory
open
mingle/classes/views/shared/login_form.php
Search for
<input type="hidden" name="redirect_to" value="<?php echo $redirect_to; ?>" />
change it with
<input type="hidden" name="redirect_to" value="<?php echo bloginfo('url'); ?>" />
this will redirect users to blog home page
you can change
bloginfo('url');
with anything you want.
hope you find it usedul