Hello @mayy3321,
Please take our apologies for the delayed reply. Could you please try adding the following snippet:
<?php
add_filter(
'wpmudev_blc_can_send_scan_report',
function( $can_send, $recipients, $broken_links_count, $blc_scan_report_model ) {
if ( 0 >= intval( $broken_links_count ) ) {
$can_send = false;
}
return $can_send;
},
10,
4
);
– save it as a PHP file in your text editor, for example: blc-skip-zero-reports.php, and upload it to /wp-content/mu-plugins/ directory on the server, in order for it to run as a must use plugin.
Hope this helps. Let us know if you have any questions!
Best Regards,
Dmytro