- Trạng thái
- Đang chờ nhà phát triển
- Plugin/giao diện liên quan
- Soho Hotel
- Thẻ chủ đề
- Compatibility
Tổng quan về lỗi
Khi truy cập trang đặt phòng sử dụng giao diện Soho Hotel, chỗ ở và khách được hiển thị bằng tất cả ngôn ngữ thay vì ngôn ngữ đã chọn.
Giải pháp tạm thời
Vui lòng đảm bảo có một bản sao lưu đầy đủ cho trang web của bạn trước khi tiếp tục.
- Mở tệp /wp-content/plugins/sohohotel-booking/includes/functions/backend/general/shb-core-functions.php.
- Tìm dòng 10.
- Thay thế đoạn mã sau:
function shb_get_all_ids($post_type) { $ids = get_posts(array( 'fields' => 'ids', 'posts_per_page' => -1, 'post_type' => $post_type, 'orderby' => 'date', 'order' => 'ASC', )); return $ids; }Bằng:
function shb_get_all_ids($post_type) { $ids = get_posts(array( 'fields' => 'ids', 'posts_per_page' => -1, 'post_type' => $post_type, 'orderby' => 'date', 'order' => 'ASC', 'suppress_filters' => false, )); return $ids; }