- สถานะ
- แก้ไขแล้วโดยผู้พัฒนา
- ปลั๊กอิน/ธีมที่เกี่ยวข้อง
- Avada
- แท็กหัวข้อ
- Compatibility
ภาพรวมของปัญหา
หากคุณกำลังใช้งาน ธีม Avada คุณอาจพบปัญหาเกี่ยวกับการแปลโพสต์ Portfolio คำแปลของโพสต์จะแสดงไอคอนกำลังโหลด และคุณจะพบข้อผิดพลาดที่คล้ายกันในข้อมูลการดีบักของคุณ:
Call to a member function get_cart_contents_count() on null .../wp-content/themes/Avada/includes/avada-functions.php:662
วิธีแก้ปัญหาชั่วคราว
โปรดตรวจสอบให้แน่ใจว่าคุณได้สำรองข้อมูลทั้งหมดของไซต์ของคุณก่อนดำเนินการต่อ
- เปิดไฟล์ …/wp-content/themes/Avada/includes/avada-functions.php
- เปลี่ยน:
function fusion_add_woo_cart_to_widget_html() { $items = ''; if ( class_exists( 'WooCommerce' ) && ! is_admin() ) { - เป็น:
function fusion_add_woo_cart_to_widget_html() { $items = ''; if ( class_exists( 'WooCommerce' ) && ! is_admin() && ! ( defined( 'REST_REQUEST' ) && REST_REQUEST ) ) {