Invalid index bug fixed

This commit is contained in:
Frey Mansikkaniemi 2020-11-20 15:55:40 +08:00
parent 3722338708
commit 4b60d7f9ed

View File

@ -59,7 +59,7 @@ function its_wpf_add_class( $methods ){
add_filter('woocommerce_available_payment_gateways', 'its_wpf_pay_order_label'); add_filter('woocommerce_available_payment_gateways', 'its_wpf_pay_order_label');
function its_wpf_pay_order_label($gateways) { function its_wpf_pay_order_label($gateways) {
if($gateways[ITS_WPF_PLUGIN_ID]) { if(!empty($gateways[ITS_WPF_PLUGIN_ID])) {
$gateways[ITS_WPF_PLUGIN_ID]->order_button_text = __('Confirm FPS Payment Completed',ITS_WPF_PLUGIN_ID); $gateways[ITS_WPF_PLUGIN_ID]->order_button_text = __('Confirm FPS Payment Completed',ITS_WPF_PLUGIN_ID);
} }
return $gateways; return $gateways;