-
AuthorPosts
-
May 3, 2017 at 10:17 am #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
AnjiMay 3, 2017 at 12:23 pm #787057Hey 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,
NikkoMay 3, 2017 at 5:13 pm #787246Hi 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
AnjiMay 5, 2017 at 7:54 am #788244Hi,
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,
RikardMay 9, 2017 at 1:28 pm #790237Hi 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 7Thanks
AnjiMay 9, 2017 at 3:32 pm #790368Hi,
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,
YigitMay 9, 2017 at 3:48 pm #790389Hi Yigit
Many thanks for this and yes all is working fine. Do you have any idea of what the problem was?
Thanks
AnjiMay 9, 2017 at 3:51 pm #790391 -
AuthorPosts
- The topic ‘Enfold Recent Update’ is closed to new replies.