1. Employer
If you want to redirect employers to another page after they update company profile, please the following codes to functions.php file:
add_action( 'noo_save_company', 'redirect_after_save_company' );
function redirect_after_save_company( $company_id ) {
if( $company_id ) {
noo_message_add(__('Company updated','noo'));
}
wp_safe_redirect('ADD YOUR URL HERE');
die;
}
Replace URL with the link you want.
2. Candidate
In order that candidates will be redirected to another page after they update profile, please go to noo-jobmonster/framework/admin/noo_form_handler.php
Replace the following codes:
wp_safe_redirect(Noo_Member::get_candidate_profile_url());
with these ones:
wp_safe_redirect( Noo_Member::get_endpoint_url('Enter your URL here') );
Replace URL with the link you want.