kibus90
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Filter on certain pageHi,
But the file “taxonomy-job_listing_category.php” shows all categories.
But you can use this: [jobs per_page = “20” show_filters = “false” show_pagination = “true” categories=”my_category”]
“my_category” – you can change it for any slug category.
Forum: Plugins
In reply to: [WP Job Manager] Add Apply buttonHi @kuanank
You can use this add-on to WP Job Manager:
We have the problem with keywords, location or job category. ??
Thank you for reply.
My previous version of WPJM was 1.32.3 and everything worked okey.
After update to the latest version the issue appeared.
P. S. When you will release the new plugin (for job filters)?
Aslo when I press ‘Reset” in my searchingform and then I will try go for some searching by link e.g.:
mywebsite.com/job-offers/?search_keywords=orderpicker
Also is the same with custom search form:
Then in the searching form everything clears automatically.
- This reply was modified 5 years, 7 months ago by kibus90.
Forum: Plugins
In reply to: [WP Job Manager] Does WP Job Manager works with multisite?With WPML plugin – yes. ??
Forum: Plugins
In reply to: [WP Job Manager] select2-search is hiddenHi,
I checked two of these pages and I see the in two version search box in select2. ??
I think it is okey.
Grettings,
DariuszForum: Plugins
In reply to: [When Last Login] The plugin does not work with custom Front-End login formHello @andrewza
Thank you for your reply.Is possible to change the hook for different?
My part of code which is responsible for login:
if(empty($errors)) { if(!is_email( $_POST['pippin_user_login'] )){ wp_redirect( $_POST['redirect_to'] ); wp_setcookie($_POST['user_login'], $_POST['user_pass'], true); wp_set_current_user($user->ID, $_POST['user_login']); die; } else { wp_redirect( $_POST['redirect_to'] ); wp_setcookie(get_user_by( 'email', $_POST['user_login'] )->user_login, $_POST['user_pass'], true); wp_set_current_user(get_user_by( 'email', $_POST['user_login'] )->ID, $_POST['user_login']); die; }
I tried to add little bit custom code but does not save logs.
Could you help me with it? ??
Thank you in advance.
Forum: Plugins
In reply to: [WP Job Manager] Shortcode to list logged in users resumesHello @robp2175 ,
If you mean about this add on:
https://wpjobmanager.com/add-ons/resume-manager/
You can do it by adding the new page named: Resumes and put the shortcode:
[candidate_dashboard]
Forum: Plugins
In reply to: [WP Job Manager] APPLY FOR JOB buttonHello @baptiste-c
You need to buy the add on WP Job Manager Applications:
https://wpjobmanager.com/add-ons/applications/
Grettings,
Dariusz.Forum: Plugins
In reply to: [WP Job Manager] Customising the application processHello,
I do not know why it does not work. I just checked two codes – and both work well.
Try this:
<?php echo countappss('all',$post->ID);?>
or this:<?php $apss= get_job_application_count( $post->ID ); if($apss > 0): echo $apss; endif;?>
I asked you about WP Job Manager Applications ??
Forum: Plugins
In reply to: [WP Job Manager] Customising the application processHi,
Hmm.. do you have installed WP JOB MANAGER APPLICATIONS?
Maybe you use some different plugin to send the applications?
Forum: Plugins
In reply to: [WP Job Manager] Customising the application processDo you have WP Job Manager Application installed?
You can see how it looks in my example in job listings:
And here in the single job listing:
And here you have application for this job (WP-Admin):
I think it should work. If this does not work, you can do something else.
You can add this to you function.php:
function countappss( $appstatus, $job_id) { return sizeof( get_posts( array( 'post_type' => 'job_application', 'post_status' => $appstatus, array( 'publish' ), 'posts_per_page' => -1, 'fields' => 'ids', 'post_parent' => $job_id ) ) ); }
Then you can add this code where you want to show all application to some job:
<?php echo countappss('all',$job->ID);?>
If you want e.g. show only “new” application, then just change it:
<?php echo countappss('new',$job->ID);?>
I hope now everything is clear.
P. S. During copy the code please be careful that you copy in good format (
'
instead‘
)Grettings,
Dariusz.- This reply was modified 5 years, 10 months ago by kibus90.
Forum: Plugins
In reply to: [WP Job Manager] Customising the application processHello @ibiza69
This is not support to WP Job Manager plugin, but I can help you.
You can add this code where do you want display it.
You can the below code where do you want see the counter of applications (all) to current job offer:
<?php $apss= get_job_application_count( $post->ID ); if($apss > 0): echo esc_html_e('Applications','wp-job-manager'); echo ': '.$apss.''; endif;?>
Grettings,
Dariusz.- This reply was modified 5 years, 10 months ago by kibus90.