• When I updated from 3.9.4 to 4.0.2 the BBpress user profile pages will not open. There seems to be a loop which is not getting resolved. I deactivated all plugins except Bbpress and it was the same. Then I activated Astra theme (previously I was using the Astra Child) and the problem was still there. I then activated the standard WP theme and it worked ok. I have now restored version 3.9.4 and it is working again ok.

    If anyone else has experienced this it would be good to know.

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter confusedneedhelp

    (@confusedneedhelp)

    Hi @confusedneedhelp,

    I can confirm the same thing is happening to me, when I tested it. It happens since Astra v4.0.

    Thank you for bringing this to our attention, and we are sorry for the inconvenience you may have because of this. We will try to fix this ASAP.

    Kind regards,
    Herman ??

    Want to chime in saying that this is happening on the bbpress forum search page as well. I believe the content loop may be calling itself. I can make a new forum post about it if I should but this is likely the same issue

    Hi @bsfherman , any updates on this? Astra and BBPress are both vital parts of my website, disabling either of them is not an option but their interoperability is currently unusable

    Hello @bsfherman?– hoping to get an update on this bug fix as well. It’s crippling our bbp search (infinite loop of results) as well as the aforementioned profile loop glitch. Is there any workaround we can use to remedy this while we wait for an official update? Thanks so much!

    Robin W

    (@robin-w)

    I’m a moderator from bbpress, and spent a couple of hours yesterday hunting down the issue.

    This code fixes it :

    add_filter ('astra_single_layout_one_banner_visibility', 'astra_bbpress_fix', 50) ;
    
    function astra_bbpress_fix ($value) {
    	if( class_exists( 'bbpress' ) ) {
    		if (bbp_is_single_user()) return false ;
    		if (bbp_is_search()) return false ;
    	}
    return $value ;
    }
    

    Put this in your child theme’s function file – ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets – WordPress plugin | www.remarpro.com English (UK)

    beabudai

    (@beabudai)

    Hi, we had exactly the same problem, and I can confirm that the solution of Robin works! Astra did not reply at all, but Robin solved the problem and saved our life. So many thanks to Robin.

    Robin W

    (@robin-w)

    if you have the additional bbp-style-pack plugin – and why would you not have this ??

    bbp style pack – WordPress plugin | www.remarpro.com

    then this fix is available at a single click – so not coding or other plugins needed.

    once activated just go to

    dashboard>settings>bbp style pack and click the theme support button

    • This reply was modified 2 years ago by Robin W.
    ewd910

    (@ewd910)

    Works for me too, thanks Robin!

    • This reply was modified 2 years ago by ewd910.

    Hi guys, sorry for the long silence.

    Thank you @robin-w for sharing your snippet to fix this issue. We released an update today that contains the fix for this issue.

    Could you please guys confirm this?

    Kind regards,
    Herman ??

    @bsfherman – thanks, tested and all working as far as I can see ??

    Hi, sorry for the delay.

    Thanks for the confirmation.

    @confusedneedhelp, would you please mark this thread as Resolved? Feel free to start a new thread if there is anything else related to Astra we can help you with.

    Kind regards,
    Herman ??

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘BBpress user profile broken on latest update’ is closed to new replies.