braehler
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Description categorie listingvnot quite sure if this fits your needs, but you could try to insert this into the jobs list template
<?php the_excerpt(); ?>
This catches up an exercpt of the description. you can modify how many words are shown as well
Forum: Plugins
In reply to: [WP Job Manager] Jobs won’t be displayeddid you check the settings? Maybe the “moderate new listings” checkbox is checked?
Forum: Plugins
In reply to: [WP Job Manager] Allow author role to access job listingsas far as I know, this should be possible.
Forum: Plugins
In reply to: [WP Job Manager] Looking for a possibility to save jobs like a wishlistthere is a bookmark addon provided by wpjm. This could be a solution for ypu.
Another one would be the favorites plugin
Forum: Plugins
In reply to: [WP Job Manager] Employer Listing and Employer Profile pageWPJM provides the company listing add on. Check it out if this fits your needs. Another way would be using the cariera theme, which has an individual company page by default
Forum: Plugins
In reply to: [WP Job Manager] Limit Upload Typesbasicly this is a thread for a paid add on, but the easiest way ti limit upload types is using the field editor plugin provided by myles.
Forum: Plugins
In reply to: [WP Job Manager] Adjust logo sizedid you try uplaod another new logo to a new job listing? there it should work. Also check the setting of media and regenerate your thumbnails
can be done via the WP All Import plugin
https://www.wpallimport.com/how-to-get-jobs-into-wp-job-manager/
Forum: Plugins
In reply to: [WP Job Manager] Adjust logo sizeyou still have to tweak the size of the logo via CSS. Depends from theme to theme, but in this thread there is some example code.
https://www.ads-software.com/support/topic/logo-size-in-job-list/
Forum: Plugins
In reply to: [WP Job Manager] Bug in localisation admin areaThis seems to be an issue with your google maps api key.
this is a question for a paid add on, but I′ll give you some advise:
Under the settings of “Applications” you need to edit the job application form. You can just add a new field, like textvox, drop down, etc.
Forum: Plugins
In reply to: [WP Job Manager] Display single job metaUsually the meta comes from this template here:
content-single-job_listing-meta.php
You need to adjust your own template/ the sidebar element.
Code for job location is at line 37, and the type is at line 28 to 34
Forum: Plugins
In reply to: [WP Job Manager] Job Category – Classthere is a plugin which handles the category coloors via the admin settings.
https://de.www.ads-software.com/plugins/wp-job-manager-category-colors/
a little bit outdated but gets the job done on our sites
Forum: Plugins
In reply to: [WP Job Manager] Images being cropped and too smallcheck out this threads here
https://www.ads-software.com/support/topic/logo-size-in-job-list/
https://www.ads-software.com/support/topic/company-logo-template-too-small/
- This reply was modified 1 year, 6 months ago by braehler.
Forum: Plugins
In reply to: [WP Job Manager] Add location column in Job Dasboardmaybe this one here points ypu into the right direction. Never realy touched this one, but I hope this helps.
function custom_job_manager_job_dashboard_columns( $columns ) { // Add column $columns['job_location'] = 'Location'; // Return. return $columns; }
add_action( 'job_manager_job_dashboard_column_job_location', function( $post ) { echo get_post_meta( $post->ID, '_job_location', true ); } );
- This reply was modified 1 year, 7 months ago by braehler.