drewkime
Forum Replies Created
-
Forum: Plugins
In reply to: [Analyticator] Appearance > WidgetsI’m seeing the same Google_AuthException message as wag2013.
Just took the latest update and now it’s working. Sorry I didn’t see your request for details, but it looks like whatever you fixed did the trick. Thanks.
Same issue here. Grid view works, list and grouped-list don’t. Here’s my example page:
http://ourladyofthelakepto.com/calendar/
Body of the page shows “No events to display”. Sidebar has a widget that’s displaying a grid just fine.
In for answer.
WINNING! Yup, that’s got it.
That’s got it, awesome!
I still need to check “Always include scripts” so that it loads on old posts with comments after commenting is closed, but that’s not a big deal since they’ll be cached locally.
Will check it tonight, thanks.
Here’s half the fix. In wp-ajaxify-comments.php, change this:
return (is_page() || is_single()) && comments_open($post->ID);to this:
return (is_page() || is_single()) && (comments_open($post->ID) || get_comments_number($post->ID));Now the page doesn’t reload immediately. It loads correctly, the async triggers and the comments load, then the page reloads.
I’m having this problem, too. In the function wpac_comments_enabled it checks for comments_open. If you have comments automatically disabled on old posts, this returns false.
I’m going to see if I can come up with something after I’ve fixed the other problem I’m having.
Someone else reported the same issue a week ago. There’s already a thread on the support site: http://ww.wp.xz.cn/support/topic/bad-bug-causes-line-breaks
Thanks for the pointer.
Forum: Plugins
In reply to: [Genesis Easy Columns] Bad bug causes line breaksHere’s a thread where I was tracking down the same issue: http://ww.wp.xz.cn/support/topic/contact-form-adding-line-break
Test page is here. After the “Name” and “Email” fields there is a break tag after the closing label tag. That isn’t there when I disable Easy Columns.
The Jetpack developer pointed to the shortcodes.php file which turns autoformatting off and back on.
Thanks, yeah, looking up what that does I can see why it would help.
Problem is I see a file with that name in both jetpack/modules and genesis-easy-columns/includes but neither of them has the shortcode_unautop line in it. Where do you find that one?
Strange. When I disable “Genesis Easy Columns” the break tag disappears, however after reviewing the code for that plugin there are no break tags anywhere to be found. I’ve tried multiple themes, and it happens in all of them. (Yes, even Twenty Eleven.)
Any other ideas I can try?
I’m seeing the same thing on this page. I’ve set the line-height to 0 for now, but like @humanfiles said, that’s not ideal.