WPML
상태
해결됨
보고된 제품
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 ) ) {
            

알려진 모든 문제 →