• Resolved Clint Mallon

    (@cmallon)


    How do I edit or remove the following links within bbPress when someone comes to my forum and isn’t logged in:

    “Sorry, this forum is for verified users only. Please Login or Register to continue”

    This text can be found in a yellow box under any topic for any user who isn’t logged in. I have searched everywhere and I can’t find the code within the bbPress files to edit this.

    The issue is that both of the Login and Register links lead to the default WordPress Login and Register pages. bbPress doesn’t offer an option in the settings to specify a custom page for both of these links (which needs to be added in a future update) and I’ve searched the .php files under Dashboard > Plugins > Editor > bbPress but can’t find the file to edit/remove the links?

    My site has been customized with front-end pages for Login/Register/Edit Profile so that no one is sent to the default Login/Register pages or the Dashboard. The default bbPress installation doesn’t work for my site simply bc I can’t edit these links.

    How can I:
    A. Remove the links altogether and just leave the text.
    B. Edit those two links to lead to my front-end Login / Register pages instead.

    Can anyone please point me in the right direction? Thank you so much for your time!!

    Cheers!

Viewing 1 replies (of 1 total)
  • Thread Starter Clint Mallon

    (@cmallon)

    I figured it out:

    I am currently using Jupiter by Artbees which is fantastic theme sold on ThemeForest. There is a custom theme for bbpress which is mainly used for Envato marketplace plugins or theme authors support. The link can be found below:

    https://github.com/syamilmj/Supportte

    Find meta-private.php with in the bbpress folder – The text can be found here:

    https://github.com/syamilmj/Supportte/blob/61eff729838a28d0b88d6aeab6352a5368687ab8/bbpress/meta-private.php

    Open FTP or File Manager and create this path:

    public_html > wp-content > themes > YourTheme or YourChildTheme, then create a new folder called bbpress (all lowercase!!).

    Inside the new bbpress folder, create a .php file named meta-private.php (you can find any .php file inside public_html, duplicate it, move it inside the bbpress folder, then rename it and replace the text inside with the default text below).

    <div class=”bbp-template-notice not-logged-in”>
    <p>Sorry, this forum is for verified users only. Please “>Login or “>Register to continue</p>
    </div>

    You can edit this to reflect whatever you’d like. I changed mine to:

    <div class=”bbp-template-notice not-logged-in”>
    <p>Sorry, this forum is for verified users only. Please Login or Register to continue.</p>
    </div>

    Now that it’s inside your theme or child theme, this text is safe for upgrades and the Login / Register links are no longer links!!

Viewing 1 replies (of 1 total)
  • The topic ‘bbPress – Remove or Edit: Sorry, this forum is for verified users only’ is closed to new replies.