mcarlson64
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Display category select as drop-downThanks! In case anyone else is trying to do this, here is the code that worked for me:
// Update job submission form
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields' );
function custom_submit_job_form_fields( $fields ) {
// Change job category input to a single select
$fields['job']['job_category']['type'] = 'term-select';
// And return the modified fields
return $fields;
}Forum: Developing with WordPress
In reply to: API – Not allowed to edit custom fieldSure. Will do
Forum: Developing with WordPress
In reply to: API – Not allowed to edit custom fieldThanks so much! That did the trick. Odd that there is no mention of that in the Rest API Handbook section about it here: https://developer.ww.wp.xz.cn/rest-api/extending-the-rest-api/modifying-responses/#read-and-write-a-post-meta-field-in-post-responses, and that info about it is hidden by default in the documentation here: https://developer.ww.wp.xz.cn/reference/functions/register_post_meta/. I never would have found it.
Forum: Plugins
In reply to: [Simple Job Board] Settings unavailable after upgrade to Version 2.9.1Never mind – I figured it out. I was using a custom template and I needed to update it to add the div with a class of “v1” around everything.
Thanks for your help.
Forum: Plugins
In reply to: [Simple Job Board] Settings unavailable after upgrade to Version 2.9.1Oh boy, I can’t believe I didn’t try that first! That fixed that issue, but now it appears that the custom colors defined in the Appearance settings tab don’t take effect. I suppose I can fix it with custom CSS, but it would be great if I could get the color setting to work.