-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
Restriction settings
- Logged In Users
- Redirect > Login & Back
- Handling matches both set to Filter.
- Content Is A Post with Tag
Demo
https://share.zight.com/eDuKpN0Q
Error log
Suggested fixes (tested on a local site)
PostContent.php line 166 (note: line 114 is not an issue)
// FIX for the 500 error on the BuddyBoss activity feed.
$message = \ContentControl\get_default_denial_message();
if ( is_bool( $restriction ) ) {
// Do nothing?
} else {
$message = $restriction->get_message();
}
/**
* Filter the excerpt to display when a post is restricted.
*
* @param string $message Message to display.
* @param object $restriction Restriction object.
*
* @return string
*/
return apply_filters(
$filter_name,
$message, //$restriction->get_message(), this throws a fatal error for BuddyBoss.
$restriction
);content.php line 56
// FIX for the 500 error on the BuddyBoss activity feed.
if ( is_bool( $restriction ) ) {
// Do nothing?
} else {
if ( $restriction->show_excerpts() ) {
...Metadata
Metadata
Assignees
Labels
No labels