jonryan
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Show Job categories in sidebar menu?@solcom thanks for posting the answer!
Forum: Plugins
In reply to: [WP Job Manager] Resume SkillsHi @slevine42,
Out of the box the search will return values for the skills, but you cannot search for skills specifically or filter like you can with categories. It’s possible there are some plugins that could allow you to do this in wp-admin, but I haven’t actually tried these:
https://wordpress.org/plugins/search-filter/
https://wordpress.org/plugins/advanced-custom-post-search/Forum: Plugins
In reply to: [WP Job Manager] Listing Package not showing on Pricing Page TemplateI don’t want to leave everyone in the dark here, we thought we had this fixed but overlooked something. We should have an updated plugin available in the next day or so. If you need a quick fix if you go to your product and get the post ID, then in your database insert post_id ‘the post id’ option_name ‘_visibility’ meta_value ‘visibile’, this should fix the problem. The SQL should look like this….
INSERT INTO
wp_postmeta(post_id,meta_key,meta_value) VALUES (YOURPOSTID, ‘_visibility’, ‘visible’);Make sure you replace your post ID with the one you see on the product page for your package.
Forum: Plugins
In reply to: [WP Job Manager] Cannot see job posting form@timmydodd can you contact us at wpjobmanager.com/contact so I can help you privately with this. Please reference this thread and let us know what theme you bought.
Forum: Plugins
In reply to: [WP Job Manager] Submissions are not coming throughHi @faisoncenter if you have paid plugins can you contact us wpjobmanager.com/contact so we can get you some priority support on this?
Forum: Plugins
In reply to: [WP Job Manager] How to change optional fields to compulsory?Hi @sheyvr here is an example of adding a field: https://wpjobmanager.com/document/tutorial-adding-a-salary-field-for-jobs/
For changing the requirements for fields, you can do this either with using the submit_job_form_fields filter or altering the code: https://github.com/Automattic/WP-Job-Manager/blob/c35a30616947996570927259426f35f97f4b7944/includes/forms/class-wp-job-manager-form-submit-job.php#L160
Forum: Plugins
In reply to: [WP Job Manager] Listing Package not showing on Pricing Page Template@heemanshu can you please contact us here so we can help you wpjobmanager.com/contact We have an updated plugin we can send you while we get the release ready
Forum: Plugins
In reply to: [WP Job Manager] Issue in passing job parameters to mail idHi @kumaresanwp,
Without looking it’s possible those services have changed in the way they accept the email arguments. Can you file a bug report here and we’ll look at it in time? https://github.com/Automattic/WP-Job-Manager/issues/new
Forum: Plugins
In reply to: [WP Job Manager] Listings & Featured listings in alphabetical orderHi @amwebsupport,
I dug through the code a bit, it looks like maybe there was this feature but it was deprecated, and if you went through the changelog you could find out why:
This is where the search and ordering is being taken care of here:
I’m not really sure what the best solution here is and what the logic was for not having alphabetical listings. Other then point you in the right direction there really isn’t much I can do to help.
Forum: Plugins
In reply to: [WP Job Manager] License Key Not SavingHi @oldskool199 you need to make sure you check the checkbox on the left before entering those in.
Forum: Plugins
In reply to: [WP Job Manager] Job search@eoinsr I answered this in the other thread you commented in. The way categories are rendered this isn’t possible.
Forum: Plugins
In reply to: [WP Job Manager] Indeed Location@oldskool199 can you message us through wpjobmanager.com/contact so we can give you some priority support on this?
Forum: Plugins
In reply to: [WP Job Manager] Search formYou can certainly modify the search form, but it requires both frontside template and javascript modification, as well as modifying the API code. It’s totally doable but you need to have some coding experience.
As far as hiding categories, I think the issue is that the categories are not part of the api request made with the search, they are generated with the page rendering, so it really has no way of knowing if the search has those categories or not. I realize it’s not idea but it’s how it works right now.
Forum: Plugins
In reply to: [WP Job Manager] Limiting the Filter Options@timt20 the if you just show the parent categories anything with a child category will show up, so that is good. Honestly I’m not familiar with this part of the code but you will need to modify this method which generates the drop down:
Pretty sure you need to set the depth to 1 there, but it doesn’t appear there is a filter to do that so you’ll need to hardcode that in I think.
Forum: Plugins
In reply to: [WP Job Manager] Submit Job Page / Remove Any Mention Of Logged In / Accounts@wildbluefiji sorry for the confusion.
If you look here…
You’ll see there is a filter called
submit_job_form_show_signinwhich you can write a hook for to set to false.