Hi Mike,
In which file can I remove those fields?
Thank you.
That snippet would go in your theme’s functions.php file.
I pasted the code:
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields' );
function custom_submit_job_form_fields( $fields ) {
unset( $fields['company'] );
return $fields;
}
into the
wp-job-manager/wp-job-manager-functions.php
But nothing happend? URL: http://byggprojektoren.se/jobb/test-2/
The field of which the company information should be in still exists.
Thank you.
Regards,
Hi I did as you said in the linked thread, I created a file called content-single-job_listing-company.php
I did it in my FileZilla server in the /byggprojektoren.se/public_html/wp-content/plugins/wp-job-manager
But the field still appears about the company when a new job listing gets posted on my website? It is the rectangle above the job description.
The file I created is completely empty.
Have I added it right inside of FileZilla?
Thank you for your time.
Hi Mike,
I managed to fix it now, I missed one detail in the URL you posted. Thank you very much.