Two ways this can be done:
1) Use some CSS to hide it
2) Use a template override and remove the button/contact details code. For that see https://github.com/mikejolley/WP-Job-Manager/wiki/Template-overrides and edit this template file: https://github.com/mikejolley/WP-Job-Manager/blob/master/templates/job-application.php
Hi narcisoj,
Just to add to Mike’s answer – if you want to hide the button through CSS (option 1), you can use the following code in your theme’s style.css file:
.single_job_listing .application .application_button {
display: none;
}
Hope it helps