Fix File
•
/
home
/
sportsfe...
/
public_h...
/
clone
/
wp-conte...
/
plugins
/
themify-...
/
includes
/
plugin-c...
•
File:
members.php
•
Content:
<?php /** * Builder Plugin Compatibility Code * * @package Themify_Builder * @subpackage Themify_Builder/classes */ /** * @link https://wordpress.org/plugins/members/ */ class Themify_Builder_Plugin_Compat_Members { static function init() { add_filter( 'themify_builder_display', array( __CLASS__, 'members_themify_builder_display' ), 10, 2 ); } /** * Members compatibility * Show Builder contents only if user has access * * @access public * @return bool */ public static function members_themify_builder_display(bool $display,?int $post_id ):bool { return ! members_can_current_user_view_post( $post_id ) ? false : $display; } }
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List