Skip to:
Content
Pages
Categories
Search
Top
Bottom

BBpress Forum Login Takes me to WordPress Admin Page

Viewing 6 replies - 1 through 6 (of 6 total)
  • @robkk

    Moderator

    Redirecting back to the default wordpress login pages is a common complaint , but there are better plugins that handle frontend authentication then the default bbPress ones , id say maybe use another plugin for frontend authentication.

    other than that its not a total issue, those default WordPress login pages arent just for admins they are suppose to be used for all your users.

    the default from name is wordpress , you can customize it with filters though.

    add_filter( 'wp_mail_from', 'your_email' );
    function your_email( $original_email_address )
    {
    	return 'your@email-address.com';
    }
    add_filter( 'wp_mail_from_name', 'custom_wp_mail_from_name' );
    function custom_wp_mail_from_name( $original_email_from )
    {
    	return 'Your sites name';
    }

    @darlookoka

    Participant

    Thank you so much, should this code be in the bbpress setting or the wordpress settings? thks

    @robkk

    Moderator

    use this plugin add your PHP code snippets to it.

    https://wordpress.org/plugins/functionality/

    @darlookoka

    Participant

    Thank you very much

    @evila

    Participant

    No plugin bbpress Login Register Links OnForumPage

    Quando coloco echo do_shortcode(‘[bbp-login]‘); já imprime o formulário, como que eu faço para colocar o nome login e quando eu clicar ir para esse formulário?

    @gymball88

    Participant

    probably this is not the best option, but I installed a plugin to change wordpress logo.

    My issue was,, when my user try to reset their password, it takes to wordpress logo page.

    and I kinda of fix that problem with using pluggin, now at least my logo shows not wordpress logo.

Viewing 6 replies - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.
Skip to toolbar