pierreDV
Forum Replies Created
-
Thanks for your answer, Joost.
I tried with another theme and indeed there’s a loading circle that appears after around 10 seconds. I’m using Avada, maybe it’s this theme which is not fully compatible?
Forum: Plugins
In reply to: [Polylang] PHP Warning@deciosdecarvalho in the worse case scenario, it should do nothing. Can you copy the part of your config file here (without any sensitive information of course)?
Forum: Plugins
In reply to: [Polylang] PHP Warning@andra0412 To make a more complete answer:
Simply replace the line of your wp-config.pho that says:
define('WP_DEBUG', true);
By this:
ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false);
Forum: Plugins
In reply to: [Polylang] PHP WarningIn case this can help, I made the warning disappear by adding this to my wp-config.php file (just turning the DEBUG to false didn’t work):
ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false);
Forum: Plugins
In reply to: [Polylang] PHP WarningHi,
I don’t get it: I’m using PHP Version 7.2.24. Why do I get this warning who’s normally only displayed for version under 5.6?Forum: Plugins
In reply to: [Polylang] array_merge(): Argument #1 is not an arrayHi,
Same error here, conflict with YOAST SEO (disabling it make the warnings disappear).
More exactly:
Warning: array_merge(): Argument #1 is not an array in /XXX/wp-content/plugins/polylang/modules/plugins/wpseo.php on line 33
Warning: array_merge(): Argument #1 is not an array in /XXX/wp-content/plugins/polylang/modules/plugins/wpseo.php on line 33
Warning: array_merge(): Argument #1 is not an array in /XXX/wp-content/plugins/polylang/modules/plugins/wpseo.php on line 33
Here is the line 33:
$wpseo_front->options = array_merge( $wpseo_front->options, (array) get_option( $opt ) );
I’ll temporary disable Yoast SEO but your “magic” would sure be appreciated!