Forums

Join
bbPress Support ForumsPluginsREQ: Redirect upon logout

Info

REQ: Redirect upon logout

  1. 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! :)

  2. this plugin will do it..

    <?php

    add_action('bb_user_logout','function_xy');

    function function_xy() {
    global $re;
    $re = bb_get_option('uri');
    }

    ?>

  3. so1o, you're a doll, thank you! :)

  4. You must log in to post.