• Resolved starlord31

    (@starlord31)


    when i turn on the css minification it i get three messages underneath my footer of my home page which are:

    1: Warning: strpos() expects parameter 1 to be string, array given in /www/htdocs/w0190a79/schmerzfreiheitleben.de/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-fonts.php on line 203
    2: Warning: strpos() expects parameter 1 to be string, array given in /www/htdocs/w0190a79/schmerzfreiheitleben.de/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-fonts.php on line 203
    3: Warning: strpos() expects parameter 1 to be string, array given in /www/htdocs/w0190a79/schmerzfreiheitleben.de/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-fonts.php on line 203
    by turning css minification of its gone. Do you know how to fix that so i can use the minify function without those warnings. avtually i have wp optimize since a few month and that issue is new. thakns for help.

Viewing 1 replies (of 1 total)
  • @starlord31 In your wp-config.php file

    Replace

    define('WP_DEBUG', false);

    with this:

    ini_set('log_errors','On');
    
    ini_set('display_errors','Off');
    
    ini_set('error_reporting', E_ALL );
    
    define('WP_DEBUG', false);
    
    define('WP_DEBUG_LOG', true);
    
    define('WP_DEBUG_DISPLAY', false);
Viewing 1 replies (of 1 total)
  • The topic ‘Css minify issue’ is closed to new replies.