Support may delay or unavailable from 30-03-2025 to 10-04-2025 due to Eid Holyday break.

job_bm_report_html_job

This filter allows changing the HTML output of the report Job.

function report_html_job($html){
  
  $html = 'New HTML';
  
  return $html;
}
add_filter('job_bm_report_html_job','report_html_job', 30, 1);