Scott Basgaard
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Move "Apply for job" ButtonHi there,
Try clearing your browser cache.
I’m seeing Mike’s CSS fix and the whole button shows now.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Can't see job descriptionSounds like a conflict with your theme.
I would test with Twenty Twelve bundled with WP to confirm and then take a look at the documentation Mike provided above.
Cheers,
ScottForum: Plugins
In reply to: [WP Job Manager] Translating problemYou’ll want to keep %s as this is replaced with other strings like (Day(s), Month(s)).
You can also find these as standalone strings which you should be able to translate and they’ll be used throughout the plugin.
Forum: Plugins
In reply to: [WP Job Manager] URGENT cannot create jobs, resumes or check outAwesome, happy to see you’ve found an alternative as well 🙂
Forum: Plugins
In reply to: [WP Job Manager] Translating problemHey there,
Are you using Codestyle Localization?
https://wpjobmanager.com/document/translating-wp-job-manager/
These strings are there and you should have no issues finding them in the ‘wp-job-manager’ text domain following those instructions.
Remember that some strings will appear as “Posted %s ago” for dates.
Hope this helps,
ScottForum: Plugins
In reply to: [WP Job Manager] URGENT cannot create jobs, resumes or check outHey there,
Unfortunately nothing stands out here as to why that plugin is causing issues.
If you still have issues with it I would advise contacting the developer of the plugin for further support.
If you do run into any issues specific to WP Job Manager make sure to let us know and we’ll do our best to help!
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Display Expired/Expiring soon jobs separatelyThanks for your input here and we’ll definitely keep an eye on this idea(s) to see if it’s of high interest amongst our users and something we can look at implementing easier in a future release.
-Scott
Forum: Plugins
In reply to: [WP Job Manager] Display Expired/Expiring soon jobs separatelyHey there,
There’s no way to do this out of the box but if you have some WordPress development knowledge you could easily query these expiring jobs and display them in a widget with their remaining days.
You could also make your own custom template to show expired jobs as an archive with some quite basic knowledge of WordPress queries.
Unfortunately this type of custom development is beyond what we can help you with here in support though.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] What are the ways to easily change search job options?Hey there,
Thank you for contacting us here at WP Job Manager Support.
I hope to help you with your issue/question best I can.
Regarding #1:
If you are familiar with code, take a look at:
https://wpjobmanager.com/document/editing-job-submission-fields/Otherwise these might help in the form of a plugin:
https://plugins.smyl.es/wp-job-manager-field-editor/
http://www.remicorson.com/product/wp-job-manager-custom-fields/Regarding #2:
There is some discussion here which might help you:
https://wordpress.org/support/topic/changing-and-adding-new-fields-to-admin-filterKind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Removing location from WP Job ManagerThis will do both front and backend:
add_filter( 'job_manager_job_listing_data_fields', 'custom_resume_manager_resume_fields' ); function custom_resume_manager_resume_fields( $fields ) { unset( $fields['_job_location'] ); return $fields; } add_filter( 'submit_job_form_fields', 'custom_hide_resume_form_fields' ); function custom_hide_resume_form_fields( $fields ) { unset( $fields['job']['job_location'] ); return $fields; }Try adding that to your theme’s functions.php template file.
Cheers,
ScottForum: Plugins
In reply to: [WP Job Manager] Removing location from WP Job ManagerHey there,
Take a look at Mike’s solution here:
https://wordpress.org/support/topic/remove-location-in-job-submit-form-and-in-the-backend?replies=13Hope this helps!
Cheers,
ScottForum: Plugins
In reply to: [WP Job Manager] Job Listing Page – Quick QHey Luke,
This documentation should help point you in the right direction:
https://wpjobmanager.com/document/template-overrides/Cheers,
ScottForum: Plugins
In reply to: [WP Job Manager] Apply form with Gravity FormCan you copy / paste the snippet you are using so I can run some tests for you?
Also, do you see the issue with Gravity Forms disabled?
Forum: Plugins
In reply to: [WP Job Manager] Apply form with Gravity FormHey there,
Can you try re-saving your permalink structure from WP Dashboard -> Settings -> Permalinks.
I’m wondering flushing this will help with the issue you are experiencing.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Sorting of job position🙂