Link to home
Start Free TrialLog in
Avatar of WO2015
WO2015

asked on

Word Press Issue

Hello,
When you go to page "eliesgrill.com"  you will see the below show up before the page.  Any suggestions how to remove this, and what it is?

Notice: The called constructor method for WP_Widget in cleanretina_custom_tag_widget is deprecated since version 4.3.0! Use

__construct()

instead. in /home/mediterranean1/public_html/wp-includes/functions.php on line 4404

Notice: The called constructor method for WP_Widget in cleanretina_Widget_Adsense_Ad is deprecated since version 4.3.0! Use

__construct()

instead. in /home/mediterranean1/public_html/wp-includes/functions.php on line 4404

Notice: The called constructor method for WP_Widget in cleanretina_Widget_ad_block is deprecated since version 4.3.0! Use

__construct()

instead. in /home/mediterranean1/public_html/wp-includes/functions.php on line 4404
Avatar of John Korchok
John Korchok
Flag of United States of America image

The messages seem clear. You have three outdated widgets that you must update or remove: cleanretina_custom_tag_widget, cleanretina_Widget_Adsense_Ad and cleanretina_Widget_ad_block. Perhaps these were included with the Clean Retina theme from here: Clean Retina Theme. If so, they have a support forum and should be able to supply an updated version of the theme.
ASKER CERTIFIED SOLUTION
Avatar of Terry Woods
Terry Woods
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Depending on how your hosting is managed, there are different ways to disable the display errors setting.
1) As Terry Woods said, just disable display errors.

Likely this is in your site wp-config.php file.

// Disable errors emitting to visitors
@ini_set('display_errors', 0);

Open in new window


2) The actual warning message is another matter.

Eventually this warning will prompt to a Fatal in some future PHP version, so best to open a support ticket with the developer of this code to fix their code.
Avatar of WO2015
WO2015

ASKER

Thank you!