Hola me aparece un error que no se como quitarlo, es este de abajo.
>code>Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/vhosts/inpublici.com/metricdas.com/wp-content/plugins/types/vendor/toolset/types/embedded/usermeta-init.php on line 258[/php]
He descativado todos los plugins menos "Toolset Types" versión 3.5.2 y me sigue aparecendo en la seccion dentro de un usuario.
Saludos.
Rafa Corts
Hi Rafa,
Welcome to the Toolset forum. We can answer only in English in the Toolset forum.
The screenshot you shared is not an error. It's a deprecation message. The deprecation message means that on the next update of the PHP language, there might be an error happening, but for the current version that you are using, it will not have any effect and the normal work should continue on your website.
To remove the message, you can simply go to wp-config.php file on your WordPress root installation and add the line below:
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', false );
define( 'WP_DEBUG_DISPLAY', false );
Please add the code above the line below:
/* That's all, stop editing! Happy blogging. */
Thanks.