- ステータス
- 開発者により解決済み
- 関連するプラグイン/テーマ
- 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 ) ) {