This topic is: not resolved
- This topic has 26 replies, 2 voices, and was last updated 4 years, 3 months ago by .
You must be logged in and have valid license to reply to this topic.
NooTheme Premium WordPress Theme › Forums › JobMonster › few issues with theme
Hi please try and reply here
Thanks
Dear.
1. To fix problem: Job Sector not save when post job on frontend, please add custom code on your site
add_action('noo_save_job', function($job_id){
if(isset($_POST['sector'])){
$sector_selected = $_POST['sector'];
$sectors = is_array($sector_selected) ? $sector_selected : array($sector_selected);
$sectors_validated = array();
foreach ($sectors as $sector) {
$sectors_validated[] = wp_kses_post($sector);
}
wp_set_post_terms($job_id, $sectors_validated, 'job_sector', false);
}
});
2. I don't see Job Sector on job listing, please kindly send for me screenshot, i will check to help you.
3. Sorry, in current version not support remove it. We're will add support remove it via hook action.
4. Sorry, because the Job Sector is custom job taxonomy and it not support shortcode like job category.
5,6 Sorry, the theme not support you to do it.
7. We're will fix that problem on mobile in next update version.
Best regards.
You must be logged in and have valid license to reply to this topic.