Please Fix Fatal
-
Hello,
in some cases a Fatal Error is produced because you don’t initilize properly your settings page!
In method
WC_Recaptcha_For_WooCommerce_Backend::admin_settings_pagethe$settingsis array!So you need to change the method to this:
/**
* Admin Settings Page
*/
public function admin_settings_page( $settings ) {
$settings[] = include dirname( __FILE__ ) . '/admin/class-wc-recaptcha-for-woocommerce-settings.php';
return $settings;
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
You must be logged in to reply to this topic.