braehler
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Promoted listingsjust put this into the functions.php file of your childtheme
Forum: Plugins
In reply to: [WP Job Manager] Change font color on listing page@mrjoemorgan36
this one here is the basic CSS for the job types:.job-manager .job-type, .job-types .job-type, .job_listing .job-type {
color: #f08d3c;
}Just change the color to which fits your needs
Forum: Plugins
In reply to: [WP Job Manager] Recaptcha does not workWe are using V2. Before the relaunch, with the old theme it was working. Also we set up new keys. But nothing…
Just like I mentioned, when I insert the captcha via a snippet in the function , it works. But no chance via the settingsForum: Plugins
In reply to: [WP Job Manager] Remove button Already have an account?you need to remove line 33 of the job-submit.php template and then upload it to the following directory on your server:
your_child_theme/job_manager/job-submit.phpShould get the job done for you if you do not need any account sign in/out
Forum: Plugins
In reply to: [WP Job Manager] Is it possible to see a list of jobs from one company only?there is a third party plugin for your usecase
https://wpjobmanager.com/add-ons/company-profiles/Forum: Plugins
In reply to: [WP Job Manager] Adding Adsense to Single Jobit should work via putting the code into the content-single-job_listing.php file. Just need to try out where to put the code exactly. For example, if oyu want to display the the code after the job description you have to insert the code into line 39.
Then upload the file to the following directory of your server: your_child_heme/job_manager/content-single-job_listing.php- This reply was modified 2 months, 3 weeks ago by braehler.
Forum: Plugins
In reply to: [WP Job Manager] WYSIWYG – Need Help@tkgnewseed
there is a very good snippet from Myles on github gist:
https://gist.github.com/tripflex/5e9024f7a949c423e8be3daea290e6c4Maybe this one helps you te get the media upload done
Forum: Plugins
In reply to: [WP Job Manager] Hide Featured image on jobsIf you want to remove the company logo on the single jobs site, you′ll need to remove line 26 from this template: content-single-job_listing-company.php
and then upload the override to this location you your server
your_child_theme/job_manager/Forum: Plugins
In reply to: [WP Job Manager] Remove Promote button and columnjust tested this on a staging site and it works fine for me.
Are you sure you copied the whole code and did not miss the closing semicolon?
Also make sure you put this behind the opening <?php.
Otherwise there maybe an error in your code or a plugin conflict
Forum: Plugins
In reply to: [WP Job Manager] Remove Promote button and columnForum: Plugins
In reply to: [WP Job Manager] Remove Promote button and columnUse this snippet here:
add_action( 'admin_enqueue_scripts', function() { wp_dequeue_script( 'job_manager_job_editor_js' ); }, 90 ); add_action( 'init', function() { if ( class_exists( 'WP_Job_Manager_Promoted_Jobs_Admin' ) ) { remove_filter( 'manage_edit-job_listing_columns', [ WP_Job_Manager_Promoted_Jobs_Admin::instance(), 'promoted_jobs_columns', ] ); } } );
Forum: Plugins
In reply to: [WP Job Manager] Job Board – Company Logo meta fieldThe default meta key of the compnay logo is this one here:
company_logoForum: Plugins
In reply to: [WP Job Manager] Introduction text of a vacanceIf I get you right and you want to show some teaser text of the job listing you can use this php snippet
<?php the_excerpt(); ?>
Just place this into the “content-job_listing.php” template. Maybe you have to test a little where to exactly paste this into
Forum: Plugins
In reply to: [WP Job Manager] Empty Trash via WPCLII do not use the option of defer-term-counting in my command, so iI cant tell where the error comes from, but it seems you are using “-” instead of “–“, And I would suggest to make sure you are running the latest version of wpcli. And maybe you post the error here
- This reply was modified 7 months, 1 week ago by braehler.
Forum: Plugins
In reply to: [WP Job Manager] Remove location field form job posting@agrutiparihar1712
to remove the location field of the job submission flow use this snippet here
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields_dm' ); function custom_submit_job_form_fields_dm( $fields ) { // in this example, we remove the job_tags field unset($fields['job']['job_tags']); // And return the modified fields return $fields; }
instead of job_tags use the meta key of the location field. By default htis should be job_location
To remove the location field of the job list and the single job you need to override the following templates and upload them to the following directory
content-single-job_listing-meta.php
remove line 37
and upload the file to the following direction on your server
yourtheme/job_manager/content-single-job_listing-meta.phpcontent-job_listing.php
remove line 31-33
and upload the file to the following direction on your server
yourtheme/job_manager/content-job_listing.phpThese are the standard WPJM templates, maybe your theme is using its own, so you need to check this