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

Filters – job_bm_filter_input_field_html

You can edit any Input field’s HTML output with the Input field as well. Here is an Example.

function new_input_field_html($field_html){
  
  $field_html['text'] = array(
    'html'=>'My Custom HTML',														
  );
  
  return $field_html;
}
add_filter('job_bm_filter_input_field_html','new_input_field_html', 30, 1);

Filters - job_bm_filter_input_field_html 1