Hi @dallass
It should be possible but you need to modify the plugin a bit.
You must edit the specified plugin code on file wp-show-posts.php . https://github.com/tomusborne/wp-show-posts/commit/286caf1164db8b6b6f38b85d3a011b519a27f4de
(Alternatively, you can use the latest beta – https://wpshowposts.com/wp-show-posts-1-2-0/)
You then filter it with PHP snippet:
add_filter( 'wp_show_posts_shortcode_args', function( $args, $settings ) {
if( 1234 === (int) $settings['list_id'] ){
$args['comment_count'] = array(
'value' => 0,
'compare' => '=',
);
}
return $args;
}, 15, 2 );
Replace 1234 with the WPSP list id you wish you apply this on.