1. Home
  2. Developer
  3. Code Snippets
  4. Edit Navigation buttons

Edit Navigation buttons

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

Updated on September 25, 2023
Was this article helpful?

Related Articles

Need Support?
Can't find the answer you're looking for?
Contact Support