Quick question about fields
-
Hello, how can I remove these two fields from [submit_job_form]?
https://snipboard.io/jYV3dv.jpg
-
Hi @georgesmcp,
You can remove those fields with some custom code. We don’t support custom code, but this page has an example snippet of removing fields that you can use:
You will want to use this snippet, just customized with the specific fields you want to remove:
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields_dm' ); function custom_submit_job_form_fields_dm( $fields ) { // in this example, we remove the job_tags field unset($fields['job']['job_tags']); // And return the modified fields return $fields; }If you have any other questions, give us a shout!
Thanks @mnutt
I need to hide “edit button” on job description page.
https://snipboard.io/tTUmsu.jpg
The problem is that this “edit button” is on my blog page too, so if I try to hide from job listing page using CSS, the button disappears from all my blog pages. Could you please help me fix this. I only want to hide “edit button” on job description page. It must be hided, beause if the user want to edit the job description, he must go to job dashboard.
Hi @georgesmcp,
On my test site I’m not seeing the Edit button for the Job description, except on the Job Dashboard page. By default, the WP Job Manager plugin doesn’t allow editing except on the Job Dashboard.
There may be another plugin or your theme could be adding the button, I would recommend as a test disabling all the other plugins and setting your theme to a default them and see if you are still having the same issue after that. If it works as expected from there, you can try re-enabling your plugins and see when the issue comes back to narrow down which one is causing it.
Let us know how it goes!
Hello @michaelnutt,
From [jobs] list, when I click to view a job, I get redirected to the apply page with the job description. Which type of page is this? Is this a blog post page? Where is this stored on my wp?
https://snipboard.io/4S3w1A.jpg
I’m trying to hide that “Edit” button below “apply job” button. Could you please send me a pic with your test?
Hi @georgesmcp –
This would be the single job listing page. You can read more about that page here:
This is the a listing on my site without the “edit” button:
You may need to adjust your theme via custom CSS or custom code to hide the button that is displaying on your site. That level of customization is outside our support policy. If you need assistance, you will want consult with a developer.
The topic ‘Quick question about fields’ is closed to new replies.