ads97129
Forum Replies Created
-
Hi and thanks for the answer.
I have turned off all plugins except wp-statistics but the error doesn’t disappears.
A screenshot of the backend:
Thank you
- This reply was modified 2 years ago by ads97129.
Hello,
Same here, impossible to disable cache notice in admin.
Even if I put lines in functions.php :add_filter('wp_statistics_cache_status', function ($status) { $status['status'] = false; return $status; });
“wp-cache is detected” message always appears in admin.
ThanksForum: Plugins
In reply to: [Contact Form 7] Error causing emails not to send and spinning wheelThe problem comes from functions.php in my theme. There is a conflict betwwen Contact Form 7 and PHPMailer.
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] Notice dashboardYes, line 126
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] Notice dashboardIn cookie-notice\includes\dashboard.php line 26, replace
if ( $analytics['consentActivities']&& is_array( $analytics['consentActivities'] ) {
by
if ( is_array( $analytics ) && $analytics['consentActivities'] ) {
Hi,
I have also problems with 1.12.0 update. The flipbook fails with the message “NetworkError when attempting to fetch resource.”Forum: Plugins
In reply to: [HTTP Headers] Failed to activate plugin on local XAMPPHi @zinoui
I have the following error when activate plugin :Fatal error: Cannot redeclare build_csp_value() (previously declared in C:\xampp\htdocs\mysite\wp-content\plugins\http-headers\http-headers.php:81) in C:\xampp\htdocs\mysite\wp-content\plugins\http-headers\http-headers.php on line 81
However, plugin is activated now.
Thanks
ADS
Hello,
To fix this problem with wordpress 5.5, copy following code and paste into frontech theme function file :if( is_admin() ){ add_action( 'wp_default_scripts', 'wp_default_custom_scripts' ); function wp_default_custom_scripts( $scripts ){ $scripts->add( 'wp-color-picker', "/wp-admin/js/color-picker.js", array( 'iris' ), false, 1 ); did_action( 'init' ) && $scripts->localize( 'wp-color-picker', 'wpColorPickerL10n', array( 'clear' => __( 'Clear' ), 'clearAriaLabel' => __( 'Clear color' ), 'defaultString' => __( 'Default' ), 'defaultAriaLabel' => __( 'Select default color' ), 'pick' => __( 'Select Color' ), 'defaultLabel' => __( 'Color value' ), ) ); } }
Forum: Themes and Templates
In reply to: [Kyma] Unable to load customizer page in 5.5Hello,
I had the same issue with frontech child theme.
Copy following code and paste into kyma theme function file :if( is_admin() ){ add_action( 'wp_default_scripts', 'wp_default_custom_scripts' ); function wp_default_custom_scripts( $scripts ){ $scripts->add( 'wp-color-picker', "/wp-admin/js/color-picker.js", array( 'iris' ), false, 1 ); did_action( 'init' ) && $scripts->localize( 'wp-color-picker', 'wpColorPickerL10n', array( 'clear' => __( 'Clear' ), 'clearAriaLabel' => __( 'Clear color' ), 'defaultString' => __( 'Default' ), 'defaultAriaLabel' => __( 'Select default color' ), 'pick' => __( 'Select Color' ), 'defaultLabel' => __( 'Color value' ), ) ); } }
Only one solution at this moment : go back to wordpress 5.4.2.
Hello,
I have the same problem since the wordpress 5.5 version.