braehler
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Show Job Categories on a single page@ajaykasam1
removing “Job” from the URL will not work I guess.
But you can use the first snippet of the docs and rename job to something like “offers” or what ever will fit your needsForum: Plugins
In reply to: [WP Job Manager] Show Job Categories on a single page@ajaykasam1
check out this tutorial here in the docshttps://wpjobmanager.com/document/tutorial-changing-the-job-slugpermalink/
This is the gist file you need for your functions
https://gist.github.com/mikejolley/65e298c204d66ccc0597#file-gistfile1-txtForum: Plugins
In reply to: [WP Job Manager] Job offer booster (Publication date updater)@esgar and @gaurav984
I started a simmilar request on github back in the days
https://github.com/Automattic/WP-Job-Manager/issues/1888
and there is an open issue
https://github.com/Automattic/WP-Job-Manager/issues/848Are there any updates on this one? Because the whole thing started in 2016 and there is high priority on that feature since 2019
- This reply was modified 2 weeks ago by braehler.
Forum: Plugins
In reply to: [WP Job Manager] How to add phone number field?just tested it on one of my sites. Try the first one I mentined, this one works
Forum: Plugins
In reply to: [WP Job Manager] How to add phone number field?@triptikon
sorry I´d miss a letter on my code aboveadd_filter( 'submit_job_form_fields', 'gma_custom_submit_job_form_fields' ); function gma_custom_submit_job_form_fields( $fields ) { unset($fields['company']['company_name']); unset($fields['company']['company_website']); unset($fields['company']['company_tagline']); unset($fields['company']['company_video']); unset($fields['company']['company_twitter']); unset($fields['company']['company_logo']); return $fields; }
Forum: Plugins
In reply to: [WP Job Manager] How to add phone number field?@triptikon
shorter way to remove company details from the job submission flow is this one heredd_filter( 'submit_job_form_fields', 'gma_custom_submit_job_form_fields' ); function gma_custom_submit_job_form_fields( $fields ) { unset($fields['company']['company_name']); unset($fields['company']['company_website']); unset($fields['company']['company_tagline']); unset($fields['company']['company_video']); unset($fields['company']['company_twitter']); unset($fields['company']['company_logo']); return $fields; }
code belongs to your chid_themes function.php
Forum: Plugins
In reply to: [WP Job Manager] How to add phone number field?@triptikon
take a look at this code. based on the listify theme, but should works for your theme as well:// Add your own function to filter the fields add_filter( 'submit_job_form_fields', 'remove_listify_submit_job_form_fields', 9999999999 ); // This is your function which takes the fields, modifies them, and returns them // You can see the fields which can be changed here: https://github.com/mikejolley/WP-Job-Manager/blob/master/includes/forms/class-wp-job-manager-form-submit-job.php function remove_listify_submit_job_form_fields( $fields ) { if( ! isset( $fields['company'] ) ) return $fields; // If phone, company_website, or company_video fields exist in company array, remove them if( isset( $fields['company']['phone'] ) ) unset( $fields['company']['phone']); if( isset( $fields['company']['company_website'] ) ) unset( $fields['company']['company_website']); if( isset( $fields['company']['company_video'] ) ) unset( $fields['company']['company_video']); // And return the modified fields return $fields; }
Adding a field is sescribed in the cusomizations snippets of the docs like said before
- This reply was modified 2 weeks, 1 day ago by braehler.
Forum: Plugins
In reply to: [WP Job Manager] Location search showing no results in some cases@wphh
we had a simmilar issue about 2 weeks ago.
I was in contact with Myles who provides the search and filtering plugin and we also use the carriera theme.
It seems that your google maps API key is not configured right. You need to enable the plcaes api and Geocoding API in that key and th keye must have no restricitons.
Then it should workForum: Plugins
In reply to: [WP Job Manager] Not showing Job Expiry date@aksteve
the closing date is genereated by the application deadline add onForum: Plugins
In reply to: [WP Job Manager] Hide Filters Shortcodesyour shortcode is not correct. it should look like this:
[jobs per_page=”10″ show_categories=”false” show_filters=”false”]
Forum: Plugins
In reply to: [WP Job Manager] Not showing Job Expiry date@aksteve
by default WPJM does not show the expire date on the front end in the single job listing, just at the jobs dahsboard page and the admin area
You have to edit the conten-single-job_listing-meta.php file.
Maybe you can catch up the function from the job-dashboard.php (lines 72-75) and get this up runningForum: Plugins
In reply to: [WP Job Manager] disable filtering on first load@vbraun
I´d never tried this, but maybe you can just set the default number of jobs to be shown per page to zero at the jobs options settings.
Then try to filter for a job and see if it works out and you get output of search resultsForum: Plugins
In reply to: [WP Job Manager] Enable listing types – See dots@hazman
as far as I can see, there are no dots on the list of the jobs shortcode. But if you are looking for the CSS calss, it should be this one here:.rp4wp-related-job_listing>ul li.job_listing, .rp4wp-related-job_listing>ul li.no_job_listings_found, ul.job_listings li.job_listing, ul.job_listings li.no_job_listings_found { list-style: none outside; padding: 0; margin: 0; border-bottom: 1px solid #eee; }
and the one responsible just for the jobs list :
ul.job_listings li.job_listing, ul.job_listings li.no_job_listings_found { list-style: none outside; padding: 0; margin: 0; border-bottom: 1px solid #eee; }
- This reply was modified 1 month ago by braehler.
Forum: Plugins
In reply to: [WP Job Manager] Make images bigger on mobile@julesomattic
thanks a lot, got it to work. Needed two CSS classes and some regenerating of thumbnails for the old listings- This reply was modified 1 month, 2 weeks ago by braehler.
Forum: Plugins
In reply to: [WP Job Manager] Make images bigger on mobile@gaurav984
thanks for the CSS class.
Unfortunately Gino does not support Changes regarding CSS or something that is “custom code”.
Maybe someone can help me out to get the images bigger on mobile?
I´m not able to get this CSS working the right way