danny_wobble
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Add select box fieldHi Mike Jolley,
I’ve included the following to my custom job listing data field in my functions.php.
‘type’ => ‘select’,
‘options’ => array( ‘Location 1’, ‘Location 2’ ),So it now looks like this:
add_filter( ‘job_manager_job_listing_data_fields’, ‘admin_add_nhs_grade_field’ );
function admin_add_nhs_grade_field( $fields ) {
$fields[‘_nhs_grade’] = array(
‘label’ => __( ‘NHS Grade’, ‘job_manager’ ),
‘type’ => ‘select’,
‘options’ => array( ‘HCPC Paramedics’, ‘IHCD Technicians’ ,’HCPC Paramedics with CP Qualification’ ),
‘placeholder’ => ‘IHCD FPOS or Equivalent’,
‘description’ => ”
);
return $fields;}
However all thats getting saved in the database is numbers (0’s, 1’s, 2’s) they all relate to which option I chose in the job listing within the CMS. But no actual value is being saved. Such as ‘HCPC Paramedics’ or ‘IHCD Technicians’.
Do you know why?
Thanks,
Daniel.
Forum: Plugins
In reply to: [WP Job Manager] Advanced filteringHi Mike,
Thanks, I’ll take a look.
Much appreciated.
Daniel.
Forum: Plugins
In reply to: [WP Job Manager] Advanced filteringHi,
Was just wondering if you’d managed to take a look at that image? Think it might of not been working earlier but should definitely be working now.
Daniel.
Forum: Plugins
In reply to: [WP Job Manager] Advanced filteringSorry, I’ve just updated the link. New link below.
https://www.faiththeagency.com/skf/vacancies.jpg
Daniel.
Brilliant, thanks it worked perfectly!
Forum: Plugins
In reply to: [Single Latest Posts Lite] Excerpts not showingHi Jose,
Everything you suggested/replied with has worked perfectly. Thank you for your help and a great plugin!
Regards, Daniel.
Forum: Plugins
In reply to: [Single Latest Posts Lite] Excerpts not showingHi Jose,
Thanks again for your replies and screenshot, much appreciated. I will let you know if need and other help how your snippets and help works out.
Regards, Daniel.
Forum: Plugins
In reply to: [Single Latest Posts Lite] Excerpts not showingHi Jose,
Thank you very much for your reply. Could just ask, what is WordPress Excerpts, is that another plugin? Should I download/install it to make easier? Does off any other options?
I will try the fix and code snippet you supplied(thanks for that) tonight and let you know.
Also I don’t think I ever saw an excerpts field in the add post/edit post page, do I have to activate it in order to see it?
Regards, Daniel.