Hi matteo raggi,
We don’t know the exact reason why you got 500 error. We tested Simple Job Board with WordPress latest version 4.4.1 and current development is also on the way with 4.4.1.
The easiest way to find the conflict is, to activate all the plugins and then deactivate one by one and try to find the issue which plugin is responsible for 500 error.
Let us know if the problem is due to Job Board.
Regards,
PressTigers
After activating the plugin i got the error 500 and my admin page is also not opening please help me.to delete that plugin
yes, the problem is wp-job-manager: I activated wp-job-manager (without configurate it) on another more clean website and then activating Simple Job Board I receive this error:
Fatal error: Cannot redeclare job_listing_meta_display() (previously declared in /wp-content/plugins/simple-job-board/public/partials/simple-job-board-template.php:452) in /wp-content/plugins/wp-job-manager/wp-job-manager-template.php on line 645
And then same arror in all the dashboard pages, so I was obliged to delete these 2 plugin trough ftp, to enable the dashboard.
Hi matteo raggi,
This error is occurring due to function name conflict in WP Job Manger and Simple Job Board. Both plugins have the same function name.
Simple Job Board next version is coming in next week. We have resolved this issue in our next version.
For now , to resolve this issue please find the following function in simple-job-board/public/partials/simple-job-board-template.php
/**
* Displays job meta data on the single job page
*/
function job_listing_meta_display() {
get_simple_job_board_template('content-single-job-listing-meta.php', array
());
}
add_action('single_job_listing_start', 'job_listing_meta_display', 20);
and replace it with
/**
* Displays job meta data on the single job page
*/
function sjb_job_listing_meta_display() {
get_simple_job_board_template('content-single-job-listing-meta.php', array
());
}
add_action('single_job_listing_start', 'sjb_job_listing_meta_display', 20);
Sorry for the inconvenience.
Regards,
PressTigers