Viewing 30 posts - 1 through 30 (of 33 total)
  • Author
    Posts
  • #757110
    #757112

    Hey!

    It does look fine on my end. I am guessing you are using a big screen. That happens when you do not have enough content on your page. Please consider adding more elements or adding separator elements to display whitespace

    Cheers!
    Yigit

    #759900

    i am just using a 22-23 inch screen.
    Is this not a bug? I mean, should the socket in the code not be static/ixed if you just add a small footer menu and nothing else that would make the socket bigger?

    Can this be fixed please in future corrections/updates?

    #760427

    Hi,

    No that is not a bug, that is the way it’s supposed to display. If you place it in a fixed position it will likely cover information on the site.

    Best regards,
    Rikard

    #809827

    Hello, I have fixed the issue i had when migrating.
    I have though a footer error saying:
    Error text: Warning: strpos(): Empty needle in /home/zorbas76/public_html/zorbas.dk/wp-content/themes/enfold-child/footer.php on line 89

    what can the issue be and how can it be solved?

    It is for zorbas.dk, and it was hidden by the host, but the error is still there.

    #810028

    Hi,

    I cannot see error on your page. Have you figured it out already? :)

    Best regards,
    Yigit

    #810346

    Hi Yigit,

    No didn´t find a solution. The error was just hidden, but I have removed the php variables.
    You can see it now again.

    #810505

    Hi,

    I have checked it and also could not see the error. Can you post a screenshot?

    Best regards,
    Nikko

    #811025

    have a look now, the error is there now.

    #811056

    Hi,

    I cannot see the issue on footer as well.
    Could you please post FTP and WP admin logins here privately and let us know how to reproduce the issue?

    Best regards,
    Yigit

    #811169

    the issue is on the frontend. I have checked from chrome and ie11 and the issue is there:

    View post on imgur.com

    see below

    • This reply was modified 7 years, 5 months ago by lech07.
    #811171

    Hi,

    I am not really sure why but i never saw such error on your site. Also, login credentials did not work for me. Can you please check them once again?

    Best regards,
    Yigit

    #811650

    the credentials are correct.

    #811654

    one other thing. The cache plugin BWP minify that Esmail recommended is braking the website. WHich minify plugin is best to use for enfold?

    #811782

    Hi lech07,

    Here is a discussion of that https://kriesi.at/support/topic/best-caching-compression-minify-plugin-for-wordpressenfold/.
    What exactly are the errors with the BWP?

    Best regards,
    Victoria

    #812247

    it was solved by applying below code in funtions.php:

    add_filter(‘bwp_minify_style_ignore’, ‘exclude_my_css’);

    function exclude_my_css($excluded)
    {
    $excluded = array(‘avia-custom’, ‘avia-layout’);
    return $excluded;
    }

    #812281

    Hi lech07,

    Glad you got it working for you and thank you for sharing! :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #813160

    hello,

    I still have this footer issue.
    Is there a solution to this?

    I did the error visible so that you could take a look.

    #813444

    Hi,

    The page form the original post looks fine on my end. On which page do you have the issue?
    Best regards,
    Victoria

    #813573

    I have issues with the frontpage http://www.zorbas.dk/ at the footer.
    it is showing:
    Warning: strpos(): Empty needle in /home/zorbas76/public_html/zorbas.dk/wp-content/themes/enfold-child/footer.php on line 89

    #813819

    how can I solve this? :(

    #813967

    Hi lech07,

    You can switch to debug into log (https://premium.wpmudev.org/blog/debugging-wordpress-how-to-use-wp_debug/)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #814000

    hi, i hust switched it from false to true. The error is still there.

    #814095

    Hi,

    You should have all this in your config

    
    // Turn debugging on
    define('WP_DEBUG', true);
    
    // Tell WordPress to log everything to /wp-content/debug.log
    define('WP_DEBUG_LOG', true);
    
    // Turn off the display of error messages on your site
    define('WP_DEBUG_DISPLAY', false);
    
    // For good measure, you can also add the follow code, which will hide errors from being displayed on-screen
    @ini_set('display_errors', 0);
    

    Best regards,
    Victoria

    #818914

    i changed define(‘WP_DEBUG’, true); from false to true.

    should i just add the following code somewhere or under wp_debug code?

    On my host there is a php function/modul to hide the error, so I can do it from there.
    But I just want to correct the error not only hide it.

    #818958

    Hi lech07,

    If you just switch to true, it will show the errors to the users, if you configure to write errors to the log, then, users will not see them. Looks like your hosting extension is not really working or not enabled. If you can hide errors from there, please do so.

    That is a warning, not an error, it does not break anything. You can check that file and check the parameter for empty string if you like. Or maybe you have an old version of the footer file in your child theme and you should probably merge it with a newer one.

    Best regards,
    Victoria

    #818964

    ok, so i change (‘WP_DEBUG’, true) to false?

    The extension/module on my hostin was set to show errors as im trying to solve the issue. Until now no luck.

    Is there a newer child theme or something that I can try with?
    Or if I add the code here, can you see where the error is?

    • This reply was modified 7 years, 4 months ago by lech07.
    #819317

    Hi lech07,

    A child theme always consists of a functions.php and style.css, anything above that is what yu put there. SO you can that that file from the parent theme and compare the code.

    Best regards,
    Victoria

    #820542

    I was just told that the issue is my childtheme.

    so i guess i should compare the footer.php or?

    #820544

    i checked in line 89 or 90 and could see that there was missing the [NOLINK] from: if($copyright && strpos($copyright, ‘[nolink]’) !== false)
    seems like it´s ok now. can you check? how can i reproduce the error? Im not sure in my config.php is ok now?

    I checked and tested with define(‘WP_DEBUG’, true); and the error is not there now.
    i have put it back to: define(‘WP_DEBUG’, false);

    It should be false?

    • This reply was modified 7 years, 4 months ago by lech07.
Viewing 30 posts - 1 through 30 (of 33 total)
  • You must be logged in to reply to this topic.