Scott Basgaard
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Is WP Job Manager compatible with the WPML plugin?Hey hamzahali,
There are still some known issues we are seeing with WPML compatibility.
We are seeing some users have luck with Polylang though:
https://wordpress.org/plugins/polylang/Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Expired Job to be listed into the WordPress SEO XML sitemapNo worries Yunis777 😉
Forum: Plugins
In reply to: [WP Job Manager] Defining which jobs are returned for "Anywhere" locationForum: Plugins
In reply to: [WP Job Manager] How create a double job category?He Iain,
Check out:
https://wpjobmanager.com/document/shortcode-reference/
Specificall the categories param:
categories – Comma separate slugs to limit the jobs to certain categories. This option overrides ‘show_categories’ if both are set.
This should be what you are looking for.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Expired Job to be listed into the WordPress SEO XML sitemapRight, looks like I thought wpseo_posts_where was just for the sitemap build and it’s not.
I would push WP SEO some more in their support to see what they recommend.
Otherwise you could look into hooking into ‘wpseo_sitemap_index’ and doing your own custom WP_Query to add a custom sitemap. Like on:
Best of luck with this.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] use job position as subject in emailAny luck with this?
Forum: Plugins
In reply to: [WP Job Manager] RSS feed / automatically find location and employerHey theas91,
Thanks for the additional info here around how you are trying to do this.
We think we know of a way to possibly make this work on our end.
What I’ve done is opened an issue here:
https://github.com/mikejolley/WP-Job-Manager/issues/321I can’t promise a fix but we’ll definitely look into it.
Cheers,
ScottForum: Plugins
In reply to: [WP Job Manager] Expired Job to be listed into the WordPress SEO XML sitemapI haven’t tested this yet with WPSEO but it might work using the ‘wpseo_posts_where’ filter to add an additional post status:
function wpjm_include_jobs_in_sitemap( $filter, $type ) { if ( $type == 'job_listing' ) { $filter .= ' AND post_status = "expired" '; } return $filter; } add_filter( 'wpseo_posts_where', 'wpjm_include_jobs_in_sitemap', 10, 2 );You would add something like this to your functions.php template file.
Other than that I’m not sure of a XML sitemap generator that does this out of the box.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Expired Job to be listed into the WordPress SEO XML sitemapGreat, thanks Jerome and hopefully they are able to provide helpful feedback for you soon.
Forum: Plugins
In reply to: [WP Job Manager] Adding receipt_email parameter into strypeHey there,
Thank you for contacting us here at WP Job Manager Support.
This is for the Simple Paid Listings add-on correct?
Could you please open a ticket from your WP Job Manager account and we’ll be able to further assist you with this inquiry.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Expired Job to be listed into the WordPress SEO XML sitemapI would reach out to WordPress SEO support to see how you can exclude CPT’s with a custom post status ‘expired’ from their generated sitemap.
Forum: Plugins
In reply to: [WP Job Manager] Breadcrumbs does not show correct URL structureHey Marcel,
What theme are you using?
Breadcrumbs are controlled by your theme and not WP Job Manager itself.
I would reach out to the developer of your theme to see if they can tell you how to add post type to your breadcrumb trail.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Applications: How to add a photo upload field?Hey there,
Take a look at:
http://www.remicorson.com/product/wp-job-manager-custom-fields/This allows you to add a # of custom fields to the job application form including files.
Cheers,
ScottForum: Plugins
In reply to: [WP Job Manager] How to Display More Fields on a Single Job PostHey Dave,
For the additional fields you are adding, are you setting a higher priority?
Ie., higher than 5.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Mobile device menu apperance inconsistencyI would follow up with the developer of your theme for any support specific to it.