Quantcast
Channel: Topic Tag: job | WordPress.org
Viewing all 386 articles
Browse latest View live

liveashish on "[Plugin: WP Job Manager] Unique "Apply for Job" link for each Job Posting"

$
0
0

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!

https://wordpress.org/plugins/wp-job-manager/


mariosacramento on "WP Job Manager "Simple Paid Listing" plugin Issue"

$
0
0

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

https://wordpress.org/plugins/wp-job-manager/

jasonqw1 on "[Plugin: WP Job Manager] [Jobs] page not working with Buddypress?"

$
0
0

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.

https://wordpress.org/plugins/wp-job-manager/

elizabethalmeka on "[Plugin: WP Job Manager] Contact Button Not showing Canditate Email"

$
0
0

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.

https://wordpress.org/plugins/wp-job-manager/

rimoreno on "[Plugin: WP Job Manager] Cant see Apply for job button after update"

$
0
0

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

https://wordpress.org/plugins/wp-job-manager/

sanderdb on "Best practice job alerts for not registered users"

$
0
0

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"

$
0
0

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

https://wordpress.org/plugins/wp-job-manager/

Moira.Akerman on "[Plugin: Job Manager] Job application not showing"


Tomjesch on "[Plugin: WP Job Manager] Add job location based on dropdown menu"

$
0
0

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?

https://wordpress.org/plugins/wp-job-manager/

fariss49 on "[Plugin: WP Job Manager] Help!!! using job filter in other page"

mitah on "[Plugin: WP Job Manager - Contact Listing] Fatal error: Cannot redeclare class"

sgkeil on "[Plugin: Simple Job Board] custom posts page"

parrlumber on "[Plugin: Simple Job Board] Showing Multiple Locations"

$
0
0

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?

https://wordpress.org/plugins/simple-job-board/

rimoreno on "[Plugin: WP Job Manager] recaptcha check failed box"

$
0
0

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' );

https://wordpress.org/plugins/wp-job-manager/

Richard on "[Plugin: WP Job Manager] Different colors for active expired filled"


nielvrom on "[Plugin: WP Job Manager] Change jobs url (NOT slug)"

$
0
0

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.

https://wordpress.org/plugins/wp-job-manager/

daveharte on "Custom register fields in jobify - jobmanager"

$
0
0

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.

Any help greatly appreciated, thanks.

dupla Jorge on "[Plugin: WP Job Manager] Submit Resume not working"

Pritam Naskar on "[Plugin: Simple Job Board] Validation For App;ication Form"

fariss49 on "[Plugin: WP Job Manager] HELP!!! Display job region taxonomy parent & child"

Viewing all 386 articles
Browse latest View live