Created
October 25, 2018 06:53
-
-
Save yousufansa/00681e32f0aa463be9d0610f4c81e1fb to your computer and use it in GitHub Desktop.
Jobhunt - Job Dashboard Remove Duplicate & Mark Filled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( ! function_exists( 'jh_child_remove_job_manager_my_job_actions' ) ) { | |
function jh_child_remove_job_manager_my_job_actions( $actions ) { | |
unset ( $actions['mark_filled'] ); | |
unset ( $actions['mark_not_filled'] ); | |
unset ( $actions['duplicate'] ); | |
return $actions; | |
} | |
} | |
add_filter( 'job_manager_my_job_actions', 'jh_child_remove_job_manager_my_job_actions' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment