- ステータス
- 解決済み
- 報告対象
- WPML Multilingual & Multicurrency for WooCommerce 5.5.4
- 解決されたバージョン
- WPML Multilingual & Multicurrency for WooCommerce 5.5.5
- 関連するプラグイン/テーマ
- WooCommerce PayPal Payments
- トピックタグ
- Compatibility, WCML
問題の概要
WPMLでWooCommerce PayPal Paymentsを使用している場合、WooCommerce Multilingual & マルチ通貨をバージョン5.5.4にアップデートした後に致命的なエラーが発生する場合があります。
Warning: Undefined array key "ppcp-gateway" in /wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-currencies-payment-gateways.php on line 161
Fatal error: Uncaught Error: Call to a member function get_setting() on null
回避策
続行する前に、サイトの完全なバックアップを必ず作成してください。
- …/wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-currencies-payment-gateways.php ファイルを開きます。
- 152行目を探します。
- 変更前:
if ( in_array( $id, array_keys( $this->supported_gateways ), true ) ) { - 変更後:
if ( in_array( $id, array_keys( $this->supported_gateways ), true ) && in_array( $id, array_keys( $this->payment_gateways ), true ) ) {