I keep coming across the spinning wheel in Firefox and Chrome. It works fine on Safari. The site URL and wp URL are the same. Any idea? The address is http://www.redcanary.ca/calendar
I’m having exactly the same issues. It was working fine yesterday and today I can’t see anything on gridview..
Found the answer! http://wordpress.org/support/topic/169520
My right-hand column wasn’t appearing until I removed the following code from the script:
function display_excerpt_on_protected_posts($content)
{
global $post;
$replacement_text = $post->post_excerpt;
$replacement_text = apply_filters('get_the_excerpt', $replacement_text);
return str_replace('This post is password protected. To view it please enter your password below:',$replacement_text, $content);
}
add_filter('the_content','display_excerpt_on_protected_posts', 10);