custom email apply link
-
I am trying to change the email subject for the “Apply for Job” button. Currently, when you have it set for email address only, the button, pops up a small box that states “To apply for this job email your details to [requesters_email]”
With [requester’s email] is a link to:
mailto:requesters email?subject=Application%20via%20Photos%20with%20Santa%20listing%20on%20https%3A%2F%2Fnorpac.albrighttechsolutions.comI am trying to change the subject line of this link, but in the source code for this page I only see:
<?php printf( wp_kses_post( __( 'To apply for this job <strong>email your details to</strong> <a class="job_application_email" href="mailto:%1$s%2$s">%1$s</a>', 'wp-job-manager' ) ), esc_html( $apply->email ), '?subject=' . rawurlencode( $apply->subject ) ); ?></p>
My guess is %2$s contains the subject, is that correct? Where does it pull this data from?
(this is on a test domain currently)
- The topic ‘custom email apply link’ is closed to new replies.