WPML
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ỗ ở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.


  1. Mở tệp /wp-content/plugins/sohohotel-booking/includes/functions/backend/general/shb-core-functions.php.

  2. Tìm dòng 10.

  3. 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;
    	
    }

Tất cả các lỗi đã ghi nhận →