• Resolved peterforensys

    (@peterforensys)


    Hello there!

    When creating a new job I want an application email address to be set by default instead of the current user email address.

    Because now when I create a new job I have to change the application email address all the time, but I want this email address to be a predetermined email address which is the same for all job creater users. I mean here:
    https://kepkezelo.com/images/wbnr1bfqxv1wg0dphcax.png

    How can I accomplish this?

    Thank you,
    Peter

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @peterforensys, I guess you can easily change that, going to your profile and changing the email address of your profile. that how you can make it default.

    If you don’t want to change it, create a new user “company” with email that you want to use as default.

    Hope that answered your question.

    Kind regars
    Wally.

    Plugin Support bindlegirl (a11n)

    (@bindlegirl)

    Hi @peterforensys !

    You could do this with some custom code. You could try using a code snippet like this:

    /**Prefill email in WP-Admin form**/
    add_filter('job_manager_job_listing_wp_admin_fields', 'aas_prefill_application_address_wpadmin');
    function aas_prefill_application_address_wpadmin( $fields ) {
    	$fields ['_application']['value'] = '[email protected]';
      return $fields;
    }

    You can try adding the snippet to your functions.php file or by using the Code Snippets plugin.

    Please note, code snippets we provide are meant to be used as a guideline. We can’t help you debug it or customize it further.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Set a default application email address’ is closed to new replies.