ahmed
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] How can i make job expiry date optional?Thanks for your reply. ??
Jobs are manually added from wp-admin panel.https://minervajobs.co.uk/job/data-scientist-4/
I am getting the job expiry date using some php code and displayed on site.
Example: Deadline: February 1, 2018add_action( 'single_job_listing_meta_end', 'display_job_expire_date' ); function display_job_expire_date() { global $post; $expiration_date = get_post_meta( $post->ID, '_job_expires', true ); $new_date_format= date("F j, Y", strtotime($expiration_date)); if ( $new_date_format ) { echo '<li style="color:#ff4b4b;" class="date-posted" >' . __( 'Deadline:' ) .' '. esc_html( $new_date_format) . '</li>'; }
If I leave the field Job expiry date blank it shows a date month/day/1970 (may be any default date).
How can I show date not mentioned.Thanks
Forum: Plugins
In reply to: [WP Job Manager] Remove expiry dateHi,
I removed the time frame from setting. and per your instruction.To have jobs never expire, just go to Job Listings > Settings > Job Submission tab and change this setting to be blank:
https://d.pr/i/fnl256/49NqPvbH
Now it showing a old date at front end. 1970-1-1.
How can i hide the expiry date where not specified?Thanks
Forum: Plugins
In reply to: [WP Job Manager] Remove expiry dateHi,
I removed the time frame from setting. and per your instruction.To have jobs never expire, just go to Job Listings > Settings > Job Submission tab and change this setting to be blank:
Now it showing a old date at front end. 1970-1-1.
How can i hide the expiry date where not specified?Thanks
Hi,
I’m facing the same problem.
I deleted the plugin and installed via WordPress admin panel. It works fine but after few hours the problem appear again.