Gabriel Maldonado
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Adding the category to the base URLHi @crwhntt
Be sure everything is changed as follows:
– Only using the snippet under https://wpjobmanager.com/document/tutorial-changing-the-job-slugpermalink/ >
Adding the category to the base URL
(not other modifications, like permalink settings, or custom rewriting).
– Change the line 39 (in your case) to$args['rewrite']['slug'] = 'animales/%category%';
– Save again the permalinks under Settings > PermalinksOnce this is done, permalinks should be overwritten alright. Just in case and to be extra sure I tested this on my end here: https://storetestingbusiness-staging-domain-001.blog/animales/test-job/google-structure-data-test-job/ , where you can see how the job base has been changed to “animales” and then the category and the name of the job can be found.
If after these changes still doesn’t work, you’re most likely experiencing a conflict with other piece of code or plugin, and we’re unable to provide support for that.
I hope it helps!
Forum: Plugins
In reply to: [WP Job Manager] Adding the category to the base URLHi @crwhntt
What you see in your testing is expected. Note that job listings in WP Job Manager default to the permalink ‘jobs’, and this
job base
permalink structure is what you can change via the snippets in our documentation.However with the snippets above you won’t be able to make the
job base
permalink structure “dynamic”, as it has to be the same for all the jobs and it won’t work otherwise. You need a “static” base structure were all jobs will fallback.This means you won’t be able to do something like:
– webpage.com/cats/catname
– webpage.com/dogs/dognameBecause would be different base job structures. But has to be something like:
– webpage.com/animals/cats/catname
– webpage.com/animals/dogs/dognameUsing for example the tutorial on https://wpjobmanager.com/document/tutorial-changing-the-job-slugpermalink/ >
Adding the category to the base URL
I hope is clarified ??
Best,
Forum: Plugins
In reply to: [WP Job Manager] REST API Content issueHello there!
The response you’re seeing there is expected, as the content field is outputting the
post_content
, which is simply an HTML string and not JSON.Could you clarify why you expect the
post_content
to be delivered in JSON format or what are you willing to create with that? Which sort of JSON response are you expecting from this?Forum: Plugins
In reply to: [WP Job Manager] To apply for job email your details to [email protected]Hi there,
You can select a different application method under Job Listing > Settings > Job submission > Application Method
If you want to keep the same method but edit the text, this template can be overridden by copying it to yourtheme/job_manager/job-application-email.php.
This can be found here: https://github.com/Automattic/WP-Job-Manager/blob/4a50eb21e9c9641a071e4e79de48a7cd75f2999e/templates/job-application-email.php
Note that customization is outside of the scope of the support that we offer, per
our Support Policy:? https://wpjobmanager.com/support-policy/.If you need it, you can search for development help in a variety of places — here are a few to start:
– https://jobs.wordpress.net/
– https://jetpack.pro/
– https://codeable.io/?ref=l1TwZForum: Plugins
In reply to: [WP Job Manager] “Multi-select Categories” Option missingHello there!
> Is the any code snippet I can add to force that field to be “not multiple”?
I’m not sure to understand your question, if you go to Job Listings > Settings > Multi-select Categories and uncheck this checkbox, multi-select will be disabled and only one category can be selected.
Could you clarify what you mean?
Forum: Plugins
In reply to: [WP Job Manager] Google Maps Error– Have you enabled the Google Maps Geocoding API library under console.developers.google.com ? Be sure to set any Referrer restrictions to “None” on your API key.
– Have you added the Google Maps API key under Job Listings > Settings ?@ststruff please open a new thread with your specific problem and be sure to re-test with a default WordPress theme like TwentySixteen ??
Forum: Plugins
In reply to: [WP Job Manager] How to query geolocation via MySQL?Hi @tenkepadu
Please note that customization is outside of the scope of the support that we offer, per our Support Policy:? https://wpjobmanager.com/support-policy/.
The code here may point you in the right direction on how to get the the job listing location data.: https://github.com/Automattic/WP-Job-Manager/blob/914f790050a7069a2bf7db9d5b91480d6bd256be/wp-job-manager-template.php#L428
If you need it, you can search for development help in a variety of places — here are a few to start:
– https://jobs.wordpress.net/
– https://jetpack.pro/
– https://codeable.io/?ref=l1TwZForum: Plugins
In reply to: [WP Job Manager] How to create a custom form?Hi @tenkepadu
> how can I displayed it on the same page where the list of jobs displayed and the page will not be reload when the form is submitted
This is not possible as a submitted form will trigger an HTTP request and reload the page.
Also note that customization is outside of the scope of the support that we offer, per our Support Policy:? https://wpjobmanager.com/support-policy/.
If you need it, you can search for development help in a variety of places — here are a few to start:
– https://jobs.wordpress.net/
– https://jetpack.pro/
– https://codeable.io/?ref=l1TwZForum: Plugins
In reply to: [WP Job Manager] Keyword Serach Not Working> This job website has been working fine for the last 4 years but now the keyword search filter does not work.
You recall updating or installing any plugin/theme in your site since this stopped working?
If I search for
litigation
on your site I get the following message:There are no listings matching your search.
which is not right as a job with that keyword can be seen in the job list. However if I search forcommercial
I get a completely different result, and multiple items withJob of the week
description are output, which is not a WP Job Manager feature but seems to be a conflict with your theme or other plugin.I’d recommend to test this out by deactivating all plugins except WP Job Manager, switching themes to a default WordPress theme like Twenty Sixteen, clearing your site cache and test again.
Best,
Forum: Plugins
In reply to: [WP Job Manager] Apply for Job buttonCustomization is outside of the scope of the support that we offer, per
our Support Policy:? https://wpjobmanager.com/support-policy/.Here’s a tutorial that may point you in the right direction: https://wpjobmanager.com/document/customising-job-application-process/
If you need it, you can search for development help in a variety of places — here are a few to start:
– https://jobs.wordpress.net/
– https://jetpack.pro/
– https://codeable.io/?ref=l1TwZForum: Plugins
In reply to: [WP Job Manager] Job Application to accept only .docHi @sundasmunir
It seems certainly possible adding some customization to the code, however
customization is outside of the scope of the support that we offer, per
our Support Policy:? https://wpjobmanager.com/support-policy/.Note that WP Job Manager and its add-ons use the default
_attachment_file
file types provided by WordPress core, so most likely you’ll need to filter which types of file upload you allow via the plugin and then restrict them.Personally I would not recommend to limit this to a certain file type, as may be a blocker from your applicants point of view.
If you need it, you can search for development help in a variety of places — here are a few to start:
– https://jobs.wordpress.net/
– https://jetpack.pro/
– https://codeable.io/?ref=l1TwZForum: Plugins
In reply to: [WP Job Manager] Auto Search filterHi @dev65
What you want to do may be possible by adding some customization to the code, however note that customization is outside of the scope of the support that we offer, per our Support Policy:? https://wpjobmanager.com/support-policy/.
This tutorial here may point you in the right direction on how to add new filters to the search form: https://wpjobmanager.com/document/tutorial-adding-a-salary-field-for-jobs/ >
Adding a Salary Filter to the Job Search Form (advanced)
If you need it, you can search for development help in a variety of places — here are a few to start:
– https://jobs.wordpress.net/
– https://jetpack.pro/
– https://codeable.io/?ref=l1TwZForum: Plugins
In reply to: [WP Job Manager] " code in the job application email subjectThis seems certainly possible adding some customization to the code, however
customization is outside of the scope of the support that we offer, per
our Support Policy: https://wpjobmanager.com/support-policy/.Most likely you will need to filter the email subject output and escape the HTML properly to it appears as quotation marks and not as
"
If you need it, you can search for development help in a variety of places — here are a few to start:
– https://jobs.wordpress.net/
– https://jetpack.pro/
– https://codeable.io/?ref=l1TwZForum: Plugins
In reply to: [WP Job Manager] Adding the category to the base URLHello there!
Since WP Job Manager version 1.27.0, the job permalinks can be changed inside Settings -> Permalinks, under the Optional section.
While we cannot help with customization support (the docs you linked are developer level docs, for informational purposes) we can certainly test them in our end to see if there’s something off.
Can you let us know the exact snippet you’re pasting in functions.php and what outcome URL you’re willing to get?
Forum: Plugins
In reply to: [WP Job Manager] Why embedded Youtube won’t show up in single job page?Hello there @newance, @anontunisian, and @hilmawallin
Looks like a bug since 1.31, when we started escaping the job listing post content with
wp_kses_post()
A new enhancement request has been opened here: https://github.com/Automattic/WP-Job-Manager/issues/1584 to fix this problem in a future release of WP Job Manager.
Best,