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);
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);