You can adjust which navigation buttons are displayed and the text they contain using the filter matador_template_the_job_navigation_buttons
In this example we remove the ‘Apply Now’ button
add_filter( 'matador_template_the_job_navigation_buttons', function($html){
unset($html['job']);
return $html;
}, 99);In this example we change the button text for the Apply now button
add_filter( 'matador_template_the_job_navigation_buttons', function($html){
if( isset( $html['job'] ) ){
$html['job'] = esc_html__( 'Don't wait apply now to this job', 'text_domain') ;
}
return $html;
}, 99);