This may not need a plugin, but I haven't seen an easy way to implement via code ...
What I'd like is to redirect a user to the forums index page when he/she logs out. Is this possible?
Thanks! :)
This may not need a plugin, but I haven't seen an easy way to implement via code ...
What I'd like is to redirect a user to the forums index page when he/she logs out. Is this possible?
Thanks! :)
this plugin will do it..
<?php
add_action('bb_user_logout','function_xy');
function function_xy() {
global $re;
$re = bb_get_option('uri');
}
?>
so1o, you're a doll, thank you! :)
You must log in to post.