coyotito
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Displaying Expired JobsGreat! Thanx!
But wouldn’t changing that “wp-job-manager-functions.php” be meaningless when I update the plugin?
OR it call also be used when I copy it in theme folder?Coz I had the other code in functions.php
Forum: Plugins
In reply to: [WP Job Manager] Displaying Expired JobsThank you Mike,
I just added the code provided above and looks like it’s working.Any need to be concerned about the code in the link you provided?
Forum: Plugins
In reply to: WP Job Manager – Expired Jobs still displayHave you made sure cron jobs running?
For me it’s still not working!
I’ve tried gone through the site but still haven’t been able to figure out what’s wrong. The icon itself is showing at the top right corner.
Shall appreciate your help.
Ummhhh.. Any approximate date/month maybe?
Would you please also add email confirmation or admin approval depending on the role selected above?
Forum: Plugins
In reply to: [WP Job Manager] Problem with WP Job Manager Created PagesThank you, Mike.
As it looks to be a tough thing to accomplish at least for now, I’ll work on it in a near future when I really need it.
Once again, Thank you very much, Sir!
Forum: Plugins
In reply to: [WP Job Manager] Problem with WP Job Manager Created PagesYes Sir, I added it for that purpose.
I wonder what should be the correct way to add job category archives. It’s not so important at least for now but shall greatly appreciate if there’s a good way to do that.
Thank you, Mike.
Forum: Plugins
In reply to: [WP Job Manager] Problem with WP Job Manager Created PagesHOORAY!!
I resolved it. I removedadd_theme_support( 'job-manager-templates' );
from functions.php then I went to WP Job Manager Settings >> Pages and SAVE again.It’s now working perfectly.
Thank you, Mike.
Forum: Plugins
In reply to: [WP Job Manager] Problem with WP Job Manager Created PagesOh!! I had this in my theme’s functions.php
//* Add Job Category Links add_theme_support( 'job-manager-templates' );
I have removed the code and looks like I’m on my way to find a complete solution. Did that create something else I have to manually remove too?
Coz that page now displays the contents of homepage with the slider. How do I have it display the way it’s supposed to? i.e [jobs] only.
Thank you Mike.
Forum: Plugins
In reply to: [WP Job Manager] Problem with WP Job Manager Created PagesI don’t have a custom post type.
Just installed wordpress and the new WP Job Manager and that’s it.
I’m using Genesis Theme which works fine in a test site. In the test site, I installed WP Job Manager long before the auto page creation feature.I’ve just tried and it does save but doesn’t appear.
I’m sorry to mention this but I can assure you it’s only for the three automatically created pages.
When I create a new page with the [jobs], it shows fine without problem. But when I set the slug to “jobs” the error comes back. If the slug is something else out of the ones automatically created, it works fine.
I shall appreciate your help, Mike.
Forum: Plugins
In reply to: [WP Job Manager] Problem with WP Job Manager Created PagesThank you Mike.
The thing is, I can open the page to edit only that changes aren’t saved.
I noticed this because jobs in page with [jobs] are not shown the way they’re supposed to. It’s just showing the list like a blog and not with filters e.t.c.
NOTE: I have tried to do as mentioned above but it didn’t work, Sir.
Forum: Plugins
In reply to: [WP Job Manager] Deploy Dropdown Location in Filters in Jobs and ResumesThank you, Mike.
I’ll go with #3 as it will help me work on other functionalities I would like to have in my website.
Always appreciate your support.
Forum: Plugins
In reply to: [WP Job Manager] Remove Location in Job Submit form and in the Backend/** Jobs Remove Location Frontend
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields' ); function custom_submit_job_form_fields( $fields ) { unset( $fields['job']['job_location'] ); return $fields; }
/**Jobs Remove Location Backend
add_filter( 'job_manager_job_listing_data_fields', 'custom_hide_job_form_fields' ); function custom_hide_job_form_fields( $fields ) { unset( $fields['_job_location'] ); return $fields; }
/** Resume Remove Location Frontend
add_filter( 'submit_resume_form_fields', 'custom_submit_resume_form_fields' ); function custom_submit_resume_form_fields( $fields ) { unset( $fields['resume_fields']['candidate_location'] ); return $fields; }
/** Resume Remove Location Backend
add_filter( 'resume_manager_resume_fields', 'custom_resume_manager_resume_fields' ); function custom_resume_manager_resume_fields( $fields ) { unset( $fields['_candidate_location'] ); return $fields; }
Forum: Plugins
In reply to: [WP Job Manager] Jobs Are Not Expiring.Oops!! Still a bit confusing.
Now since I already have the Application Deadline (extension), what should be the settings then so that I jobs can automatically expire on the “Closing Date” set by the user in the front end?
Thank you, Mike.