Aaron Adams
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] HTML minify strips surrounding whitespace from "cite"Anybody know how to tell which project is actually causing the issue? I’m forced to admit my geekery is inadequate to figure it out.
Forum: Plugins
In reply to: [W3 Total Cache] HTML minify strips surrounding whitespace from "cite"I’m also having this problem. The following sentence:
In her book <cite>The Mother Dance</cite>,Is being minified as this:
In her book<cite>The Mother Dance</cite>,Which renders with the two words smushed together.
It sucks to disable HTML minifying entirely for such a small thing; any way to get around this?
Forum: Plugins
In reply to: [More Fields] WYSIWYG field broken in WordPress 3.2http://dannyvankooten.com/450/tinymce-wysiwyg-editor-in-wordpress-plugin/
Check out the bottom of this post, “UPDATE 06-07-2011 – WordPress 3.2.” I think it explains the issue!
Forum: Plugins
In reply to: [More Fields] WYSIWYG field broken in WordPress 3.2I figured out how to reproduce:
The visual editor no longer works for custom post types that don’t support
editor.Here’s my custom post type:
register_post_type('spider_fyb_item', array( 'label' => 'fyb', 'public' => true, 'rewrite' => array( 'slug' => 'fyb', ), 'supports' => array( 'title', 'author', ), ));If I add
'editor'to the'supports'array, it works. So my guess is that WordPress 3.2 no longer enqueues the TinyMCE JavaScript when it isn’t needed; More Fields will probably need to enqueue it explicitly when a WYSIWYG field is present.Forum: Fixing WordPress
In reply to: WordPress 2.5, wp-cache and gzip compressionWe ran into a similar problem with the WordPress 2.5/wp-cache combo this afternoon, following our WordPress 2.5 upgrade; all our pages that were cached by wp-cache were suddenly throwing internal server errors.
We’ve had to disable caching for now. Any word on what might be happening? Other plugins are Defensio, Google XML Sitemaps, FeedBurner FeedSmith, and a couple media-type plugins.