goldensun
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] How to enable comments for resumesI did like you said but nothing happened. I could not see the comment part for it
Forum: Plugins
In reply to: [WP Job Manager] How to enable comments for resumesThank you so much, I will try and post the result late.
Forum: Plugins
In reply to: [WP Job Manager] How to enable comments for resumesI saw it in the resume page, so I need to check it on, right ?
Forum: Plugins
In reply to: [WP Job Manager] How to enable comments for resumesI am sorry but I didnt see this @@
Forum: Plugins
In reply to: [WP Job Manager] How to enable comments for resumesCan you say it more detail where is the discussion meta box, because I am the new one in wordpress.
Forum: Plugins
In reply to: [WP Job Manager] How to enable comments for resumesThis is the code I’ve used from documentation
// Add comment support to the post type
add_filter( ‘register_post_type_resume’, ‘register_post_type_resume_enable_comments’ );function register_post_type_resume_enable_comments( $post_type ) {
$post_type[‘supports’][] = ‘comments’;
return $post_type;
}// Make comments open by default for new resumes
add_filter( ‘submit_resume_form_save_resume_data’, ‘custom_submit_resume_form_save_resume_data’ );function custom_submit_resume_form_save_resume_data( $data ) {
$data[‘comment_status’] = ‘open’;
return $data;
}Forum: Plugins
In reply to: [WP Job Manager] How to enable comments for resumesI am using the jobify of astoundify and I think it suitable for the plugin. I already put the code in the function.php but nothing happened or showed up. So I wonder that did I put the code in the right place ? Where should I put in the function.php file ?
Thank you again, Mike. Your reply save me a lot. I solve it.
I am sorry but I am install in localhost
Thank you Mike, I’ve solve 1 of those problem. Another problem I got is that when I click on the contact button on resume, It is just show the popup with the “X” button to close the popup, nothing show off. What happened with the contact function in the resume ?