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
GolangMicrosoft WordWordPress

Avatar of undefined
Last Comment
WO2015

8/22/2022 - Mon
John Korchok

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
Terry Woods

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Terry Woods

Depending on how your hosting is managed, there are different ways to disable the display errors setting.
David Favor

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.
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
WO2015

ASKER
Thank you!