bbPress Woosidebars plugin conflict causing 503 error
-
Hi Guys
A conflict exists with bbPress and the WooSidebars plugin –
The conflict causes the whole forum to return a 503 Error. After much digging found the problem comes from this bbPress function
bbp_get_topic_title() function
and is fixed by changing
$title = get_the_title( $topic_id )
to
$topic = get_post( $topic_id ); $title = $topic->post_title;
Hope you can add that fix to your next version update – Thank you – Steve
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.