@bartgatsby You can manually add a conditional statement to the Wbounce class-frontend.php file to accomplish this. I did so to make the popup only occur for logged out users, so you can do the same for subscribers. The only problem with this is that if the plugin is updated, you will lose the change and have to re-implement it. Takes 30 seconds though so not a big deal, you just have to add it to your notes to remind yourself. This plugin isn’t upgraded super often so not a major inconvenience.
Here’s the code I added the conditional to. It’s the very first function within the class-frontend.php file.
class Wbounce_Frontend {
function __construct() {
if (!is_user_logged_in() ) {
add_action( 'wp_head', array( $this, 'custom_css') );
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
add_action( 'wp_footer', array( $this, 'wp_footer'), 0, WBOUNCE_OPTION_KEY.'-functions' );
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style') );
include_once( WBOUNCE_PATH . 'frontend/class-shortcodes.php' );
}
}