This topic is: resolved
- This topic has 39 replies, 2 voices, and was last updated 4 years, 5 months ago by .
You must be logged in and have valid license to reply to this topic.
NooTheme Premium WordPress Theme › Forums › JobMonster › change the first status
Tagged: Employer & Candidate Actions
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.
It 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.
can I hide this ?
Sorry, in current version not support hook to custom it, we're will add support it in next update version.
Best regards.
is this going to happen every time I update the theme?
I 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.
the problem was solved somehow, all I need now is to hide the status on the filter and bulk action.
and 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
Dear. 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.
Thank you for that.
Is there a way to add email template to the employer when an application becomes approved?!
The Employer is 'Approve' or 'Reject' application, what you want send email for Employer ?
You must be logged in and have valid license to reply to this topic.