Causes white screen of death upon updating to WP 4.3
-
With WP_DEBUG on this is the error message:
Fatal error: Access level to Tribe_WP_Widget_Factory::__construct() must be public (as in class WP_Widget_Factory) in /nas/wp/www/cluster-42301/amizade/wp-content/plugins/widget-builder/lib/tribe-widget-factory/Tribe_WP_Widget_Factory.php on line 76
To get around this, I changed that file a bit, including:
Line 35 from:
private static $instance = NULL;
to:
public static $instance = NULL;
And line 72 from:
protected function __construct() {
to:
public function __construct() {
However if anyone else follows along with that, I’ve not tested it thoroughly, but it did get my widgets back and stopped the white screen of death from happening.
- The topic ‘Causes white screen of death upon updating to WP 4.3’ is closed to new replies.