NooTheme Premium WordPress Theme › Forums › JobMonster › change the first status
Tagged: Employer & Candidate Actions
- This topic has 39 replies, 2 voices, and was last updated 4 years, 3 months ago by dangdv.
-
AuthorPosts
-
4 years, 3 months ago #1206332This reply has been marked as private.4 years, 3 months ago #1206355This reply has been marked as private.4 years, 3 months ago #1206379
Dear, if you want hide approve and reject button please add custom code on your site.
//Job Application hide approve - reject link add_filter('noo-manage-application-approve-link', '__return_false'); add_filter('noo-manage-application-reject-link', '__return_false');
Best regards.
4 years, 3 months ago #1206392This reply has been marked as private.4 years, 3 months ago #1206396It display with no action and in current version not support hide it. We're will add support to hide it in next update version.
Best regards.
4 years, 3 months ago #12064244 years, 3 months ago #1206480Sorry, in current version not support hook to custom it, we're will add support it in next update version.
Best regards.
4 years, 3 months ago #1206704This reply has been marked as private.4 years, 3 months ago #1206706is this going to happen every time I update the theme?
4 years, 3 months ago #1206746I don't understand your problem. please kindly give for me more details and admin account your site via private reply, i will check details to help you.
Best regards.
4 years, 3 months ago #1206773the problem was solved somehow, all I need now is to hide the status on the filter and bulk action.
4 years, 3 months ago #1206831and is it possible to remove the the button as mentioned here:
when I change the application to approval as an admin from the dashboard the buttons still shows
4 years, 3 months ago #1206843Dear. Please add custom code in file functions.php of your theme.
1. Custom code to remove 'Approve' and 'Reject' in bulk actions:
add_filter('noo_member_manage_application_bulk_actions', function(){ return array( 'delete' => __( 'Delete', 'noo' ), ); });
2. Custom code to remove 'Approve' and 'Reject' in filter select:
add_filter('noo_member_manage_application_filter_status', function($statuses){ unset($statuses['publish'],$statuses['rejected']); return $statuses; });
3.Custom code to remove 'Approve' and 'Reject' link without action in application row:
add_filter('noo_manage_application_show_reject_approve_no_link', '__return_false');
Best regards.
4 years, 3 months ago #1206848Thank you for that.
Is there a way to add email template to the employer when an application becomes approved?!
4 years, 3 months ago #1206892The Employer is 'Approve' or 'Reject' application, what you want send email for Employer ?
-
AuthorPosts
You must be logged in and have valid license to reply to this topic.