extremer1
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Search not filteringCan anybody please help with this issue
Please
Forum: Plugins
In reply to: [WP Job Manager] Job Title Not showingHi Mike
Thank you for replying you are right its the theme whats making go out of sync
I am using the avida theme I will have the change I think.Kind Regards
extremer1Forum: Plugins
In reply to: [WP Job Manager] Job ID into the subject line of the emailHi
Goto your wordpress admin area
Appearance
Editor ( make sure your theme is selected on the top right hand side )
under list on right hand side find Theme Functions (functions.php)In there plast this
add_filter( ‘job_manager_application_email_subject’, ‘custom_job_manager_application_email_subject’ );
function custom_job_manager_application_email_subject( $subject ) {
global $post;$subject .= ‘ – ID: ‘ . $post->ID;
return $subject;
}Forum: Plugins
In reply to: [WP Job Manager] Job ID into the subject line of the emailHi Mike
what can i say a big thank you for your help
Forum: Plugins
In reply to: [WP Job Manager] Job ID into the subject line of the emailHi Mike
Thank you very much for that it works perfect.
Just one question can I do the same so the Id of the job can be seen in the job list and the backend of the job List
Thanks
Forum: Plugins
In reply to: [WP Job Manager] Job ID into the subject line of the emailHi Mike
Thank you for replying to my post.
Just added this to my theme functions.php and it gave me a white screen of death.Can you please advise
Thank You
Forum: Plugins
In reply to: [WP Job Manager] Job reference included in email subject lineHi Steve
I hope you don’t mind me replying here but I too would like the Job ID placed into the subject line of the email.
I have several jobs under the same category so I don’t know what job they are applying for.
Can you please provide us some insight how we can do this
Thank You