• Resolved arjehehen

    (@arjehehen)


    Hi guys,

    I’m looking for a way to change the way the contact/apply for a job works. What I want is that as soon as someone submits a job application or if a company responds to a candidate the email does not get send to the company or candidate but to the site administrator.

    So basically, I want to redirect all the applications or candidate enquiries to the email address of the site administrator who will then contact the corresponding candidate / company.

    How can I achieve this?

    Cheers in advance

    https://ww.wp.xz.cn/plugins/wp-job-manager/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    Howdy,

    These forums at ww.wp.xz.cn are provided to us exclusively for plugins distributed from ww.wp.xz.cn. The premium add-ons are supported for users with active licenses via http://wpjobmanager.com/support/

    For Applications, the create_job_application_notification_recipient filter would probably get you where you needed.

    Cheers!

    Thread Starter arjehehen

    (@arjehehen)

    Thank you for your response!

    The solution you provided does exactly what I need. I have another question though. When someone applied to a job and the job lister views the job-dashboard, there is another table column named “Applications”. Is there a filter to hide this column? My client wants to handle all applications by herself instead of having job listers viewing, reading and accepting an application.

    I tried emailing the support for my question regarding Resume Manager, but they did not seem to get my question :p.

    Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    Howdy 🙂 What was your ticket number on your request? We’re all the same people and like to see the previous conversation.

    You could remove the column by something like

    add_filter( 'job_manager_job_dashboard_columns', 'bk_remove_column', 11);
    
    function bk_remove_column ( $cols ){
    unset( $cols['applications']);
    return $cols;
    }
    Thread Starter arjehehen

    (@arjehehen)

    Hi Brandon,

    You are a true saint. It does exactly what I need it to do! Thank you :-).

    Regarding the ticket, my ticket number was #2595138.

    Thanks a lot for your time!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Set default email for application’ is closed to new replies.