[ad_1]
Plugin Author
axew3
(@axewww)
Hello yes, it should had been fixed time ago.
So It will be on next coming 2.6.6.
But if you want in the while, on 2.6.5:
Open file:
/wp-content/plugins/wp-w3all-phpbb-integration/class.wp.w3all-phpbb.php
lines
585
588
591
the code is this:
if (empty($redirect_to)){
wp_redirect(home_url()); exit();
}
wp_redirect( $redirect_to ); exit();
}
wp_redirect(home_url()); exit();JUST CHANGE INTO:
if (empty($redirect_to)){
//wp_redirect(home_url()); exit();
}
//wp_redirect( $redirect_to ); exit();
}
//wp_redirect(home_url()); exit();prepending with // so commenting/disabling the wp_redirect() that fire at this point of the flow.
Save the modified file and load it in place of the default 2.6.5
- This reply was modified 2 hours, 42 minutes ago by axew3.
- This reply was modified 2 hours, 40 minutes ago by axew3.
