Custom field not showing in ‘Admin’
-
Hi
I have been following this tutorial for adding a custom field: https://wpjobmanager.com/document/tutorial-adding-a-salary-field-for-jobs/
The field does get added to the job form, but when adding this code for the admin:
add_filter( 'job_manager_job_listing_data_fields', 'custom_job_manager_job_listing_data_fields' ); function custom_job_manager_job_listing_data_fields( $fields ) { $fields['_job_test'] = array( 'label' => __( 'MyCustomSalary ($)', 'job_manager' ), 'type' => 'text', 'required' => true, 'placeholder' => 'e.g. 20000', 'description' => '' ); return $fields; }
I don’t see it added to the admin at all. Where Im looking is here Job Listings > Job Manager Custom Fields. Am I looking in the right place? Or is there a bug?
The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Custom field not showing in ‘Admin’’ is closed to new replies.