Support » Plugin: Easy Social Share Buttons » WP_Widget deprecated notices

  • line 1868 of essb-social-fanscounter.php (and any other reference to constructor methods) is causing notices in WP 4.3 and above.

    class EasySocialFansCounter_Widget extends WP_Widget {
    
    	function EasySocialFansCounter_Widget() {

    needs to be changed to

    class EasySocialFansCounter_Widget extends WP_Widget {
    
    	function __construct() {

    or something similar to it.

    https://wordpress.org/plugins/easy-social-share-buttons/

  • The topic ‘WP_Widget deprecated notices’ is closed to new replies.