Datadama
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-admin CSS not loading after update 4.5.3Found solution HERE and everyting works just fine!
Addingdefine( 'CONCATENATE_SCRIPTS', false );
to wp-config.phpForum: Fixing WordPress
In reply to: wp-admin CSS not loading after update 4.5.3Nope. Been there done that.
Manually re-install, deactivating/resetting both themes and plugins, and all the above mentioned actions. Still no admin css.
So far: the only thing that works is to install an older WP version.Forum: Fixing WordPress
In reply to: Removing "abandoned code"I removed an empty spaces in the header.php, between those meta-tags – and now the page looks fine. Not sure why, but … it’s friday.
Thank you for all your help!Forum: Fixing WordPress
In reply to: Removing "abandoned code"Problem was there before installing any plugins. Only Jetpack installed.
The site:
https://www.sunndal-fjellstyre.no/header.php:
<?php global $wp_locale; if (isset($wp_locale)) { $wp_locale->text_direction = 'ltr'; } ?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo('charset') ?>" /> <title><?php wp_title( '|', true, 'right' ); ?></title> <meta name="description" content="<?php if ( is_single() ) { single_post_title('', true); } else { bloginfo('name'); echo " - "; bloginfo('description'); } ?>" /> <meta name="viewport" content="initial-scale = 1.0, maximum-scale = 1.0, user-scalable = no, width = device-width" /> <!--[if lt IE 9]><script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url') ?>" media="screen" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php remove_action('wp_head', 'wp_generator'); if (is_singular() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="main"> <?php if(theme_has_layout_part("header")) : ?> <header class="header<?php echo (theme_get_option('theme_header_clickable') ? ' clickable' : ''); ?>"><?php get_sidebar('header'); ?></header> <?php endif; ?> <div class="pageslider"> <div class="shapes"> </div> <div class="slider slidecontainerpageslider" data-width="1920" data-height="250"> <div class="slider-inner"> <div class="slide-item slidepageslider0"> </div> </div> </div> <div class="slidenavigator slidenavigatorpageslider" data-left="1" data-top="1"> <a href="#" class="slidenavigatoritem"></a> </div> </div> <div class="sheet clearfix"> <div class="layout-wrapper"> <div class="content-layout"> <div class="content-layout-row"> <div class="layout-cell content">
Forum: Fixing WordPress
In reply to: Removing "abandoned code"I’ll check the files suggested.
Using sort of templates based themes, but not commonly available. It’s not a problem with the themes it selves. Used them a lot. This has to do with me removing a meta tag before publishing, but somehow these useless little tag-leftovers was left behind…Forum: Fixing WordPress
In reply to: Removing "abandoned code"It only appears on the blog’s front page.
Cannot be found in header.php.
Using my own themes, this is the first time I’ve not been able to locate error like this one.
The problem accured before adding any plugins.I have tried to use another theme, deleted my theme and reinstalled it, – no use.