This is not a security issue, it is a plugin conflict. WP-Members might be adding some filters or actions that are not used by WP-Print.
Read this:
What the plugin does not do
WP-Members does not automatically hide absolutely everything from view. The default install of the plugin is designed to use "teaser" content to drive users to want to register. If you want certain content or menu elements completely hidden, there are ways to do that with some customization between your theme and the plugin, but it is not automatic.
You might want to drop WP-Members support
Thank you for your swift reply
will drop a message and see
I have contacted WP-Memebrs support and that was their response
That’s a matter of opinion. WP-Print looks like it loads content at the “init” action which bypasses the actions and filters that WP-Members uses.
You’d have to do some playing round to get this to work, but you could unload that action if the user is not logged in.
if( ! is_user_logged_in() ) {
remove_action(‘init’, ‘print_content’);
}
That would probably have to be attached to another action.
I tried putting that code in plugin and gave me fatal error.
can you further assist? thanks