PHP Notice
-
Been seeing this PHP notice message all over the place in the admin panel.
Notice: Undefined variable: is_home in /path/to/wp-content/plugins/subscriptions-for-woocommerce/admin/class-subscriptions-for-woocommerce-admin.php on line 231
Maybe there’s a better way, but I got rid of it by adding:
$is_home = false;
on line 209 within the wps_sfw_options_page function to set it as false by default:
public function wps_sfw_options_page() { global $submenu; $is_home = false;
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘PHP Notice’ is closed to new replies.