Hey,
I want to add custom/unique links for Application Submission Form for each job postings. As of now I am using Contact Form 7 and the application submission form link for every posting is same, which basically I selected from Job Listing> Settings> Contact a Job Form > Form Name. TIA!
liveashish on "[Plugin: WP Job Manager] Unique "Apply for Job" link for each Job Posting"
mariosacramento on "WP Job Manager "Simple Paid Listing" plugin Issue"
Hello,
We are using wp-job manager plugin on our site. It uses listify theme and I have set up the listings through woo-commerce product section. On the home page, it is appearing as a pricing table,and when some one clicks on Get-started, it redirects to add-to-cart page but i want it to redirect to another page where i have added the [submit-job-form] code.
I can not update my 'wp jobmanager-woocommerce paid listing' plugin as it is not showing any return button on my site when i put my licence key.
Please suggest how can i solve the above two issues.
Thanks
jasonqw1 on "[Plugin: WP Job Manager] [Jobs] page not working with Buddypress?"
I have the latest version of buddypress and wp job manager, and when I have buddypress enabled, my jobs page would only show a spining loading icon forever. If I disable buddypress, the list of jobs would show perfectly. Any tips/plans to fix this? Thanks.
elizabethalmeka on "[Plugin: WP Job Manager] Contact Button Not showing Canditate Email"
Hi,
I am using Job Manager plugin for displaying Resumes.In this ,Single resumes show all the collected data and also show a “contact” button .But when clicking to that button,a close button only showing,not displaying candidate mail address.Please hepl me to resolve this problem.
rimoreno on "[Plugin: WP Job Manager] Cant see Apply for job button after update"
Hello,
For some strange reason i can't see the apply for job button on a specific job post. If i look at older listings i can see the button working but no button after the update.
Did i get something wrong in the settings that i am missing?
thanks in advance
sanderdb on "Best practice job alerts for not registered users"
Hi,
I'm building a job listing website. I'm having a custom post type, some filtering options (fulltime/parttime, location, etc). Right now I'm trying to build a job alert function. For logged in users this is no problem, but I'm having trouble with the job alert for not registered users. Do you have any tips for me to realize this? I've looked into filter -> rss -> email but this seemed unnecessary complicated.
Thanks in advance!
Sander
pe4learning on "[Plugin: WP Job Manager] WP Super Cache and [JOBS| Shortcode"
Hi there,
Great product Mike!
I have just added WPSuper Cache to the website @ http://www.pe4learning.com and my [JOBS] shortcode has been working fine until tonight when I turned cacheing on. It no longer presents the spinning wheel to indicate loading and no jobs show up.
I wondered if you could point me the right direction as I have searched and done some simple tasks myself to see if I could solve it but to no avail.
I appreciate the help and fully support what you do!
Kind regards
Paul
Moira.Akerman on "[Plugin: Job Manager] Job application not showing"
Hi!
I´m trying to do a simple job application form where anyone can download a cv. Now when you press the link it just opens a blank page: http://www.aegroup.fi/jobs/apply-2/
How can I make the form redirect to the right place? It was working correctly at first and some stuff can be seen here: http://www.aegroup.fi/jobs/apply/
Appreciate all help!
Tomjesch on "[Plugin: WP Job Manager] Add job location based on dropdown menu"
I want to give the job poster the option of showing the location of the job via a dropdown menu. The dropdown has two options (yes and no) and based on the selection (for now, let's say 'yes') the billing address (from the signed in WooCommerce user) has to be added to the listing. My plan is to add a if else statement in order to check the value of the dropdown, but unfortunately I cannot find where the submission of a job is handled.
The basic idea:
http://imgur.com/EL5Cyiy
Can anybody help me?
fariss49 on "[Plugin: WP Job Manager] Help!!! using job filter in other page"
Hello
i want to use the job filter in home page and when the user search he will be redirect to the job page
Thank you
mitah on "[Plugin: WP Job Manager - Contact Listing] Fatal error: Cannot redeclare class"
Fatal error: Cannot redeclare class Astoundify_Job_Manager_Contact_Listing in /home/trouvetoncontrat/public_html/job/wp-content/plugins/wp-job-manager-contact-listing-master/wp-job-manager-contact-listing.php on line 15
how can solved that error §??
https://wordpress.org/plugins/wp-job-manager-contact-listing/
sgkeil on "[Plugin: Simple Job Board] custom posts page"
Hello;
How do you customise the job page itself? It seems like you just take the default post page, and turn that into the job. But I'd like the individual job pages to match the look and feel of the rest of my site.
For exmaple here:
http://www.mammothdb.com/jobs/regional-vp-sales-berlin/
I'd like it to look like the rest of my site, with no sidebar, with a image banner, etc.? http://www.mammothdb.com/cloud/
Thanks!
parrlumber on "[Plugin: Simple Job Board] Showing Multiple Locations"
I have multiple locations checked off for various jobs. The location filter works, but the job listing and the individual job post only show one location. How do I show multiple locations on the front end for job seekers?
rimoreno on "[Plugin: WP Job Manager] recaptcha check failed box"
Hey guys,
great plug in. i have the recaptcha box in the sub submission form, i can see it, i can use it, but when i submit the listing i get a "are you a human? check failed"
I put in the code in the documentation page, checked my keys in the google recaptcha website with the ones that i inserted inside the code.
I also put these same keys in the field editor that i have and have enabled the box.
I called my host to see if they are somehow blocking me but they are not, everything is good in their end.
the only part that i have change on the code is what is in bold due to the fact that i use field editor.
i dont know what else to do.
thanks in advance for your help
here is my snippet.
---------------------------------
Job Manager Recaptcha
------------------------------------ */
define( 'RECAPTCHA_SITE_KEY', 'i put in my keys here' );
define( 'RECAPTCHA_SECRET_KEY', 'i put in my keys here' );
// Enqueue Google reCAPTCHA scripts
add_action( 'wp_enqueue_scripts', 'recaptcha_scripts' );
function recaptcha_scripts() {
wp_enqueue_script( 'recaptcha', 'https://www.google.com/recaptcha/api.js' );
}
// Add reCAPTCHA to the job submission form
add_action( 'submit_job_form_job_fields_end', 'recaptcha_field' );
function recaptcha_field() {
?>
<fieldset>
<label>Are you human?</label>
<div class="field">
<div class="g-recaptcha" data-sitekey="<?php echo RECAPTCHA_SITE_KEY; ?>"></div>
</div>
</fieldset>
<?php
}
// Validate
add_filter( 'submit_job_form_validate_fields', 'validate_recaptcha_field' );
function validate_recaptcha_field( $success ) {
$response = wp_remote_get( add_query_arg( array(
'secret' => RECAPTCHA_SECRET_KEY,
'response' => isset( $_POST['g-recaptcha-response'] ) ? $_POST['g-recaptcha-response'] : '',
'remoteip' => isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']
), 'https://www.google.com/recaptcha/api/siteverify' ) );
if ( is_wp_error( $response ) || empty( $response['body'] ) || ! ( $json = json_decode( $response['body'] ) ) || ! $json->success ) {
return new WP_Error( 'validation-error', '"Are you human" check failed. Please try again.' );
}
return $success;
}
/*------------------------------------------------------------------------------------
Submit resume
--------------------------------------------------------------------------------------*/
add_action( 'submit_resume_form_resume_fields_end', 'recaptcha_field' );
add_filter( 'submit_resume_form_validate_fields', 'validate_recaptcha_field' );
/*------------------------------------------------------------------------------------
Applications
--------------------------------------------------------------------------------------*/
add_action( 'job_application_form_fields_end', 'recaptcha_field' );
add_filter( 'application_form_validate_fields', 'validate_recaptcha_field' );
Richard on "[Plugin: WP Job Manager] Different colors for active expired filled"
Hi,
is it possible to change the color of a listing, depending on status (active/expired/filled)?
This looks promising:
https://wordpress.org/plugins/wp-job-manager-colors/
Thank you!
Richard
nielvrom on "[Plugin: WP Job Manager] Change jobs url (NOT slug)"
I'm using the WP Job Manager plugin in my wordpress website. The list of my jobs is currently found on /jobs . I would like to have it on /careers . The listing of all jobs is not a page so I can't change the url there.
I've found the topic that shows an example on how to change the slug from /job/titlejob to /careers/titlejob. But it doesn't show how I can change /jobs to /careers.
In the example they are doing this:
function change_job_listing_slug( $args ) {
$args['rewrite']['slug'] = _x( 'careers', 'Job permalink - resave permalinks after changing this', 'job_manager' );
return $args;
}
add_filter( 'register_post_type_job_listing', 'change_job_listing_slug' );
When I add this to my functions.php my job detail pages are found at /careers/jobtitle. But the overview is still on /jobs . How can I change that?
I would like to do it without the translating, because I think it's cleaner.
daveharte on "Custom register fields in jobify - jobmanager"
Hi, I'm pulling my hair out trying to add custom fields to my registration form. I don't know how to manipulate code or which code to manipulate if I could so im trying to use plugins to acheive this.
Can someone tell if if they had any success customizing the registration fields and if so, how they did it, please.
What I want to do is use first name, last name, email, password, repeat password, and a requirement to confirm email address.
dupla Jorge on "[Plugin: WP Job Manager] Submit Resume not working"
I bought the resume manager add on, and use the shortcode [submit_resume_form], but the page is blank, please help, this is where the form should display: http://sbsconsulting.com.ec/empleos/submit-resume/
Thanks a lot
Pritam Naskar on "[Plugin: Simple Job Board] Validation For App;ication Form"
The application form have only required validation so anyone can make the admin panel full of garbage applicant without valid email and phone number.Please someone fix this.
fariss49 on "[Plugin: WP Job Manager] HELP!!! Display job region taxonomy parent & child"
Hello
i used this plugin WP Job Manager - Predefined Regions to add job regions to WP Job Manager it's a taxonomy, when i put the function the_job_location(false); in my code it shows all taxonomies (parent & child) that i have selected for this job , i want to display the regions like this :
- parent : child-child....
- parent : child-child....
- parent : child-child....
here my website : http://potomac.webnetservers.com/~therapyc/careers/