I am new to WordPress. These are the version I am using –
WordPress version: 5.7.1
Theme Name: Saasland
And I am receiving this error message-
Deprecated: ElementorScheme_Typography is deprecated since version
2.8.0! Use ElementorCoreSchemesTypography instead. in /customers/a/a/5/test.com/httpd.www/wp-includes/functions.php on
line 5051
And here is the code from the functions.php
$replacement
) . $message,
E_USER_DEPRECATED (##line 5051)
);
} else {
I have tried to google a lot but didn’t manage to find any solution to this matter. Does anyone know any possible solution?
3
Answers
The Deprecated Notice is shown because of an Elementor related plugin/addon. To get rid of the message, you can find the plugin and deactivate it, you can to wait for an update of the plugin or change your setting in
wp-config.php
:OR
Error like this
ElementorScheme_Typography is deprecated since version 2.8.0! Use ElementorCoreSchemesTypography instead
Add use class in your PHP file like this
example:-
use ElementorCoreSchemesTypography as Scheme_Typography;
The Deprecated Notice is shown because of an Elementor related plugin/addon. To get rid of the message, you can find the plugin and deactivate it, you can to wait for an update of the plugin or change your setting in wp-config.php:
Hope it will solve your issues.