Can you replicate the problem using the default Twenty Fourteen theme with all plugins deactivated?
Hi esmi,
No, it seems when I install the twenty fourteen theme, the problem goes away, so it’s obviously related to theme in some way. Can you point me to most likely reason?
My guesses:
1) I have duplicated a style (though admin styles are separate, so I can’t imagine this is the cause)
2) I have written a function that is broken
3) I have created an item in the customiser that conflicts
4) I deregistered jquery and reregistered it as the online version (though I already tried changed this)
I’m guessing I’ve done something faulty some where, I could perhaps try using the theme checker.
Does it also happen with all plugins deactivated?
Looking a little closer at the URL in the ss it seems a little odd that it escapes the preview url.
Hi Jose,
thanks for your reply. In the end I solved the problem by deleting all the functions in my functions.php one by one and seeing it made a difference. The problem turned out to be, strangely, that I had used a <strong> tag </strong> in the register_sidebar description, i.e
register_sidebar(
array(
'name' => __('Carousel Slogan', 'TNP'),
'id' => 'carousel-slogan',
'description' => __('Display a slogan <strong>under the carousel</strong>.', 'TNP'),
'before_widget' => '<div class="carousel-slogan-text">',
'after_widget' => '</div>',
'before_title' => '',
'after_title' => ''
));
When I removed the strong tags, everything went back to normal. Very strange!