- Trạng thái
- Đang chờ nhà phát triển
- Plugin/giao diện liên quan
- WP Job Manager
- Thẻ chủ đề
- Compatibility
Tổng quan về lỗi
Khi sử dụng WPML với tiện ích bổ sung Applications của WP Job Manager, trong đơn ứng tuyển, sơ yếu lý lịch hiển thị bằng tất cả ngôn ngữ trong menu thả xuống thay vì ngôn ngữ hiện được chọn.
Giải pháp tạm thời
Vui lòng đảm bảo bạn đã sao lưu toàn bộ trang web của mình trước khi tiếp tục.
- Mở tệp …/wp-content/plugins/wp-job-manager-applications/includes/class-wp-job-manager-applications-apply.php.
- Tìm dòng 250.
- Thay thế:
$args = apply_filters( 'resume_manager_get_application_form_resumes_args', [ 'post_type' => 'resume', 'post_status' => [ 'publish' ], 'ignore_sticky_posts' => 1, 'posts_per_page' => -1, 'orderby' => 'date', 'order' => 'desc', 'author' => get_current_user_id(), ] ); - Bằng:
// WPML Workaround for compsupp-7819 $args = apply_filters( 'resume_manager_get_application_form_resumes_args', [ 'post_type' => 'resume', 'post_status' => [ 'publish' ], 'ignore_sticky_posts' => 1, 'posts_per_page' => -1, 'orderby' => 'date', 'order' => 'desc', 'author' => get_current_user_id(), 'suppress_filters' => false, // add this line ] );