Forum Replies Created
-
AuthorPosts
-
Hi.
Thank you for contacting us.
We have checked the Contact Form 7 widget with the Elementor, it still works fine. https://prnt.sc/7RYEFmCCRsgH
Please provide us with your site admin account. We will access your site to help you check it.
Regards.
Hi.
I have checked and fixed that issue on your site. https://prnt.sc/ac371iwzDIRN
The issue with WordPress 6.7.1 and we also released a new version 4.7.6 to fix that issue.
Please recheck it.
Regards.
Hi.
I have checked and fixed that issue on the job-location page by removing the code :
// if ( is_post_type_archive( 'noo_job' )){
// }
wp-content/themes/noo-jobmonster/framework/job/job-query.php
Please recheck it.
Regards.
Hi.
Please check your jobs management, I use the closing value to check the job expired to hide the job on the archive page.
If your closing job date passes the current day. It will not display on the archive page. https://prnt.sc/Q0nh5mz_hXWz
Please recheck it.
Hi.
The issue is from the cache plugin. I have deactivated the cache plugin. https://prnt.sc/J2naSc-_ZonU
Please recheck it.
Regards.
2 months, 1 week ago in reply to: Job Posting shows “Pending Payment” after Order has been Completed #1222074Hi.
To fix the pending package order, please go to WooCommerce/ Settings/ Advanced/ Features/ and select "WordPress Post Storage" for the Order data storage option.
Please recheck it.
Regards.
Hi.
We will check and release a new version to fix the WooCommerce template files issue soon.
Regards.
Hi.
I have removed the source code on the loop file and add the new source code on this file
wp-content/themes/noo-jobmonster/framework/job/job-query.php
below line 50 to hide the expired job on the Archive:
// hide expried job on the Archive if ( is_post_type_archive( 'noo_job' )){ $query->set('meta_query', array( array( 'key' => '_closing', 'value' => current_time('timestamp'), 'compare' => '>=', 'type' => 'NUMERIC', ), )); }
Please recheck it.
Regards.
Hi.
I have checked and fixed your site issue. I think now it works fine again. The site speed also improved.
Please recheck it.
Regards.
This reply has been marked as private.Hi.
If you have an issue with the jobs archive page, please go to JobMonster/ Settings/ Jobs/ check the job archive base ( slug ) and save the config again.
Go to pages and remove the jobs page, it the page exists.
Go to Settings/ Permalinks and save the config.
Then you can see the jobs archvie page again.
Regards.
Hi.
Please check this expired job: https://ev.dev-toursncrea.fr/offre-emploi/commercial-clubs-et-collectivites-nord/
You can't see the job on the Archive page, but the URL is fine.
Please recheck it.
Regards.
Hi.
Thank you for contacting us.
Please provide us with your site URL, admin account again. We will access your site to help you check that issue.
Regards.
Hi.
Thank you for contacting us.
The job page is the archived page. You can't edit that page content.
To change the job archived layout, you need to config via customize/ job & company/ Job listing.
Regards.
Hi.
To fix the free package order, please go to WooCommerce/ Settings/ Advanced/ Features/ and select "WordPress Post Storage" for the Order data storage option.
Please recheck it.
Regards.
Hi.
Thank you for contacting us.
You can create a coupon for the Job or Resume package via the WooCommerce/ Coupon. Our package based on the WooCommerce product.
Please recheck it.
Regards.
Hi.
We have checked and fixed that issue on your site.
Now you can save the resume custom fields.
Regards.
Hi.
We use cron action to check the job expiry and set the job status to expired. When the post status changes to expired, it will change the post URL /?post_type=noo_job&p=jobid.
So if you want to keep the job URL, you need to disable the noo_job_check_expired_jobs() action on the file: wp-content/themes/noo-jobmonster/framework/job/job-expired.php line 43.
The expired job will not change the status to expired.
After that, you can still see the expired job on the archived page. To hide the expired job, please go to this file:
wp-content/themes/noo-jobmonster/layouts/job/loop/loop.php
under line 64, you need to add the source code below to ignore the expired job:
$closing_date = get_post_meta( $post->ID, '_closing', true ); $closing_date = empty( $closing_date ) || is_numeric( $closing_date ) ? $closing_date : strtotime( $closing_date ); $is_expired = ( 'expired' == get_post_status( $post->ID ) ) || ( ! empty( $closing_date ) && $closing_date <= strtotime('-1 day',time()) ); if ($is_expired) continue;
This code use to check the closing date on the job.
Please recheck it.
Regards.
Hi.
Thank you for contacting us.
Please provide us with your site admin account. We need access your site to help you check that issue.
Regards.
Hi.
Thank you for contacting us.
Please provide us with your site admin account. We need to check the config in WPML.
Regards.
Hi Thierry.
I'm Jackie from the NooTheme team. Please provide us with more permission for the support account. I need permission to access your dashboards to check the config.
Regards.
Hi.
Thank you for contacting us.
I still able to edit your site with the Elementor. https://prnt.sc/fK65eDDk7u0_
Please recheck it.
Regards.
Hi.
The default description field on the custom taxonomy doesn't support TinyMCE editor. If you want, you need to create another description field.
Regards.
Sorry for the mistake, to add the warning message at the beginning of the submit form, example with the job submit form you need to edit the source code on this file:
wp-content/themes/noo-jobmonster/layouts/forms/job_form.php line 19
and use the HTML format for the warning content
<div class="alert alert-danger"> <strong>Warning!</strong> --- All fields with a * are mandatory </div>
Please recheck it.
Regards.
Sorry, do you want to copy the closing value to the expired field on the job? https://prnt.sc/jawLN2NpnImx
I'm unsure, but I'll help you check the source code.
To display expired jobs on another page, a lot of source code needs to be changed. We can help you display the expired jobs on another page with the URL parameter, but for the search page, it also needs to change the query source code with the URL parameter.
Regards.
-
AuthorPosts