Hi,
Well, there are no visual options for this in the Lite version as this is a Pro version feature, but there is a programmatical way to stop the plugin from loading if criteria is not met using the asl_stop_loading
hook.
add_filter( 'asl_stop_loading', 'asl_stop_loading_on', 10, 1 );
function asl_stop_loading_on( $results ) {
global $post;
// Allow plugin only on post ID = 123
if ( isset($post->ID) && $post->ID == 123 ) {
return false;
}
return true;
}
Whenever this function returns true the plugin stops before loading, and loads when returns false;
Best,
Ernest M.