oneart
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] No comment notification e-mail to the post authorThank you.
Forum: Plugins
In reply to: [WP Job Manager] No comment notification e-mail to the post authorYes it does.
Forum: Plugins
In reply to: [WP Job Manager] No comment notification e-mail to the post authorNo, it doesn’t work for job posts. When a new comment is added on a job post, the author of the job post doesn’t get any email about the comment.
The settings for the comments are the following;
1. “E-mail me whenever anyone posts a comment” is checked in Discussion < Settings < WordPress.
2. in the functions.php;
add_filter( ‘register_post_type_job_listing’, ‘custom_register_post_type_job_listing’ );function custom_register_post_type_job_listing( $args ) {
$args[‘supports’][] = ‘comments’;
return $args;
}add_filter( ‘submit_job_form_save_job_data’, ‘custom_submit_job_form_save_job_data’ );
function custom_submit_job_form_save_job_data( $args ) {
$args[‘comment_status’] = ‘open’;
return $args;
}Forum: Networking WordPress
In reply to: 2nd language to 2nd siteYes, it works!
Thank you very much, Casey!Forum: Plugins
In reply to: [WP Job Manager] To remove the hyperlink to google mapPlease inform me of it in Resume too.
Forum: Plugins
In reply to: [WP Job Manager] To add locationAnd other problems are that Location2 is not filterable in job-lising and how it is translated into other languages.
Forum: Plugins
In reply to: [WP Job Manager] To add locationI have added location2 next to location in job-submit, job-listing and single-job-listing. But the problem is that I don’t know how to show the map.
The codes go like this :
#functions.php
add_filter( ‘submit_job_form_fields’, ‘frontend_add_location2_field’ );
function frontend_add_location2_field( $fields ) {
$fields[‘job’][‘job_location2’] = array(
‘label’ => __( ‘Location2’, ‘job_manager’ ),
‘type’ => ‘text’,
‘required’ => false,
‘placeholder’ => ”,
‘priority’ => 3
);
return $fields;
}add_action( ‘job_manager_update_job_data’, ‘frontend_add_location2_field_save’, 10, 2 );
function frontend_add_location2_field_save( $job_id, $values ) {
update_post_meta( $job_id, ‘_job_location2’, $values[‘job’][‘job_location2’] );
}#content-job_listing.php
<div class=”location”>
<?php the_job_location( false ); ?>
<?php
$location2 = get_post_meta($post->ID, ‘_job_location2’, true);
echo “/”;
echo $location2;
?>
</div>#content-single-job_listing.php
<li class=”location” itemprop=”jobLocation”><?php the_job_location(); ?>
<?php
$location2 = get_post_meta($post->ID, ‘_job_location2’, true);
echo “/”;
echo $location2;
?>Forum: Plugins
In reply to: [WP Job Manager] To add locationYes you are right.
And forget about the job seekers mentioned above.
But when it comes to the employers, they really want to add locations in job-submit-form because they have branches as I said above.
And of course the added locations should be shown in job-listing and single-job-listing.Forum: Plugins
In reply to: [WP Job Manager] To add locationSome companies have two or more branches.
And some job seekers may find one job in a few places at the same time.
So it will be good to be able to enter two or more places in the location field
or to add the location field.Forum: Plugins
In reply to: [WP Job Manager] Comments to ResumesNot to me but to other;
http://ww.wp.xz.cn/support/topic/how-can-i-add-comments-to-each-job-listing?replies=3Forum: Plugins
In reply to: [WP Job Manager] Closing date next to Company nameI want the very one containing the phrase ‘closing date:’ like in the content-single-job_listing so that I can translate it into other languages.
Forum: Plugins
In reply to: [WP Job Manager] Closing date next to Company nameIt is the closing date in Application Deadline.
Forum: Plugins
In reply to: [WP Job Manager] Change of the job alert frequencyPlease tell me how to customise it.
And even if the listings are within 10,
would it be a burden to the server too?Forum: Plugins
In reply to: [WP Job Manager] To send the administrator an email alertNever mind. I found the solution.
Forum: Plugins
In reply to: [WP Job Manager] I can't remove the former uploaded file in Logo fieldI have reinstalled WordPress.
Now the button works well.