This plugin was throwing an error in 4.3.1 for me.
there is a note about it in this article
https://gist.github.com/chriscct7/d7d077afb01011b1839d
essentially all I needed to do was the change code on one line.
line 8 in widget.php in the phpeverywhere folder
Change:
$this->WP_Widget(‘phpeverywherewidget’, ‘PHP + HTML’, $widget_ops);
to:
parent::__construct(‘phpeverywherewidget’, ‘PHP + HTML’, $widget_ops);
every thing works
BTW I LOVE this plugin – could not run my site without it
Plugin Author
Alex
(@alexander_fuchs)
Thanks for the reply, I will look into it. Also nice to hear you like it 🙂
Plugin Author
Alex
(@alexander_fuchs)
Thank you thea2zbrand I updated the plugin with your code.