Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #786995

    Hi
    I tried yesterday to install the recent update and although the website was ok when I tried to login to WP a blank page appeared.
    I deactivated all plugins, re-installed wordpress and updated via ftp with the same result. I’ve had to revert back to the previous version.
    Any help would be appreciated.
    Thanks
    Anji

    #787057

    Hey AnjiG,

    Thanks for providing the access, before we try to fix this would you allow us to deactivate plugins? also if you have modification on the theme please let us know.

    Best regards,
    Nikko

    #787246

    Hi Nikko
    No problem with deactivating plugins.
    Modifications: Only removing time from posts and changing Blog “latest News” title. Code added to end of functions.php
    function custom_widget_time($time_format, $location) {
    $time_format = get_option(‘date_format’);
    return $time_format;
    }
    add_filter(‘avia_widget_time’, ‘custom_widget_time’);

    add_filter(‘avf_title_args’, ‘fix_single_post_title’, 10, 2);
    function fix_single_post_title($args,$id)
    {
    if ( $args[‘title’] == ‘Blog – Latest News’ )
    {
    $args[‘title’] = get_the_title($id);
    $args[‘link’] = get_permalink($id);
    $args[‘heading’] = ‘h1’;
    }

    return $args;
    }

    and some Quick CSS
    Thanks
    Anji

    #788244

    Hi,

    Thanks for the feedback. It’s very difficult to say what could have gone wrong on the update if we don’t have any error messages or server logs to look at. Would it be possible for you to copy the site to a staging area so that we can do the update there? If you have access to server logs then please share those too.

    Best regards,
    Rikard

    #790237

    Hi Rikard
    I thought I replied to your last message but can’t seem to locate it in my sent box or anything. If I did reply then forgive this reply!!
    Please feel free to try the update live…really don’t mind.

    The error logs are on the server. I have sent login details to you in last replies. However this is the error that came up when I updated theme:
    2-May-2017 21:20:06] PHP Warning: Cannot modify header information – headers already sent by (output started at /home/understa/public_html/wp/wp-content/themes/enfold/functions.php:151) in /home/understa/public_html/wp/wp-includes/pluggable.php on line 1195
    [02-May-2017 21:20:10] PHP Fatal error: Call to undefined function avia_get_option() in /home/understa/public_html/wp/wp-content/themes/enfold/header.php on line 7
    [02-May-2017 21:20:11] PHP Fatal error: Call to undefined function avia_get_option() in /home/understa/public_html/wp/wp-content/themes/enfold/header.php on line 7

    Thanks
    Anji

    #790368

    Hi,

    I updated the theme via FTP and currently there are no errors whatsoever and both frontend and backend loads fine. Please review your website :)

    Best regards,
    Yigit

    #790389

    Hi Yigit
    Many thanks for this and yes all is working fine. Do you have any idea of what the problem was?
    Thanks
    Anji

    #790391

    Hi,

    When using auto update feature, it sometimes do not overwrite files correctly. Might be hiccups on the server but i am not 100% sure :)
    Glad it is working fine now!

    Let us know if you have any other questions or issues and enjoy the rest of your day! :)

    Best regards,
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Enfold Recent Update’ is closed to new replies.