Evert
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Only show Job Page if user is logged in@apqc If you let uw know what you want via [ link redacted ] we can send you a quote.
Forum: Plugins
In reply to: [WP Job Manager] Only show Job Page if user is logged in@apqc You should read the documentation on https://wpjobmanager.com/document/template-overrides/ and make the changes in a child theme. That way you can upgrade both the plugin and the (parent) theme, without losing your changes.
Forum: Plugins
In reply to: [WP Job Manager] limit job featured on home pageSounds like you must contact the one who build the theme through their support forum
Forum: Plugins
In reply to: [WP Job Manager] Only show Job Page if user is logged inIf you want to take it one step further and add a checkbox to the admin section where you can set force registration per job let us know.
We can add it to your wp job manager site within an hour.
Forum: Plugins
In reply to: [WP Job Manager] Only show Job Page if user is logged inForum: Plugins
In reply to: [WP Job Manager] multiple job formsHi Olaf,
I think you are on the right way. I am not sure if you also have created two different userroles for the employers but you may want to do this. With the page template below you only need one page to display the two submit forms. Saves you an extra link on your site and has some SEO improvements.
The code below first checks the userrole of the user and than conditionally displays the shortcode for form1 or form2. This can be extend with more or other forms. We are using it on our clients sites to show the employer or the candidate dashboards. This is a quick modification of the code. You may find a typo (or two) 😉
Please notice that I have also added the userrole ‘administrator’ in the function, so site admins will always see both the form. You may want to adjust it to your needs.
<?php /* Template Name: Submit Job Form Author: FourLeafed - Evert Semeijn */ ?> <?php get_header(); ?> <div id="content"> <div id="inner-content" class="row clearfix"> <div class="large-8 medium-8 columns clearfix" role="main"> <?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<ul class="breadcrumbs"><li>','</li></ul>'); } ?> <div id="main"> <?php /* check if user is logged in */ if ( is_user_logged_in() ) { /* switch from capabilities to userroles */ global $current_user; $user_roles = $current_user->roles; $user_role = array_shift($user_roles); if ( in_array( $user_role, array( 'administrator' , 'employer1' ))) { // userrole is employer1 echo do_shortcode( '[submit_job_form]' ); // or some other shortcode } elseif (in_array($user_role, array( 'administrator' , 'employer2'))) { // userrole is employer2 echo do_shortcode( '[submit_job_form]' ); // or some other shortcode } else { echo '<a href="<?php echo wp_login_url(); ?>" title="Login">Login</a>'; } } ?> </div> </div> <?php get_sidebar('submit'); ?> </div> </div> <?php get_footer(); ?>Forum: Plugins
In reply to: [WP Job Manager] Mobile OptimisationThe problem is how to link this job submission form to the job board, ie automatically post the job on the job board after submission.
I think you are not using the plugins right. They should be used for applications, not for new job submissions.
You can use the plugins to add a form to the jobs that will be used for sending the applications, not new jobs. If you want to extend the job submission form you can follow the tutorial here https://wpjobmanager.com/document/tutorial-adding-a-salary-field-for-jobs/ and shouldn’t use the plugins.
Forum: Plugins
In reply to: [WP Job Manager] Mobile OptimisationYou need a mobile-friendly/responsive theme to solve the mess on the submit job page (and all other pages). The theme defines the look of your job board.
There are addons for Gravity Forms and Ninja Forms. You can check them out on this page https://wpjobmanager.com/product-category/forms/.
Forum: Plugins
In reply to: [WP Job Manager] Jobs not posting to site after purchasing through PayPalDid you uncheck ‘New submissions require admin approval’? It is in Job Listings > Settings.
Forum: Plugins
In reply to: [WP Job Manager] Apply for Job button is missingSee this thread for an apply form function.
Forum: Plugins
In reply to: [WP Job Manager] Translations behave inconsistently.@duveaux: The Dutch translation file has been updated (to 100%) with some improvements. Please replace your copy with the files from the language repository at https://www.transifex.com/projects/p/wp-job-manager/.
Forum: Plugins
In reply to: [WP Job Manager] Translations behave inconsistently.Forum: Plugins
In reply to: [WP Job Manager] Translations behave inconsistently.Dropbox for the win 😉
Forum: Plugins
In reply to: [WP Job Manager] Translations behave inconsistently.Beste Duveaux [Hi Duveaus],
You could download this file and run it through POEDIT. It is the Dutch .pot file I finished yesterday.
Let me know if it works.
Forum: Plugins
In reply to: [WP Job Manager] Edit Table Column Titles on Job DashoardThis may sound stupid or quite obvious, but did you check the file job-dashboard.php? See below code snippet.
<div id="job-manager-job-dashboard"> <p><?php _e( 'Your job listings are shown in the table below. Expired listings will be automatically removed after 30 days.', 'wp-job-manager' ); ?></p> <table class="job-manager-jobs"> <thead> <tr> <th class="job_title"><?php _e( 'Job Title', 'wp-job-manager' ); ?></th>Cheers, Evert