Marcus Downing
Forum Replies Created
-
Forum: Plugins
In reply to: [HeadJS Loader] Late-enqueued scripts in the footerI’m saying that if a script is enqueued, it should always be written. If that requires a second call to head.js(), then yes.
Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Problems displaying in the editorMe too. Typing into the visual editor *does* edit the content, but I can’t see anything – it’s just a big empty space where the content should be.
Forum: Plugins
In reply to: [Attachments] [Plugin: Attachments] Filters and actionsOkay, in your own time. As long as the next version you release doesn’t remove them (and overwrite my local copy when I update), which would probably confuse and annoy me. 🙂
Forum: Plugins
In reply to: [Attachments] [Plugin: Attachments] Filters and actionsThanks, I will 🙂
I’ve submitted a pull request from marcusatbang/attachments. You should of course test before trusting me.
Forum: Plugins
In reply to: [Geolocation] Adding Geolocation to Portfolio posts??Seconded. I have several custom post types I’d like to add this to. It should also be possible to switch this off for posts.
Forum: Plugins
In reply to: [Subtitle Filter] Does Not WorkI’ve published version 1.2 which should fix this.
Forum: Plugins
In reply to: [Subtitle Filter] Does Not WorkI actually found and fixed the same problem only a few days ago, and have yet to publish a new version.
I just tried and it worked for me. What I did was to use a
single-post_type.phptemplate (such assingle-movie-review.php, etc), and added the header to that.In the case of custom post types the order it looks for templates is:
- single-post_type.php
- single.php
- index.php
which should match up to the template hierarchy that WordPress uses. In the case of a
post, the file would besingle-post.phpForum: Hacks
In reply to: Increase Number of Columns on Edit Post screenYou’re welcome. It is quite a tricky, messy hack to add it without core support, which is no doubt why Mark didn’t believe it was possible. It would still be vastly better (less hacky and more reliable) if WordPress had built-in support for this.
Forum: Plugins
In reply to: [Subtitle Filter] Does Not WorkHave you added the
'submenu' => 'Something'parameter to your call towp_nav_menus?Forum: Hacks
In reply to: Increase Number of Columns on Edit Post screenI’ve published my solution as a real plugin. It does not require you to modify the code of WordPress itself in any way.
I have the same problem on the latest versions (WordPress 3.1.3 and W3TC 0.9.2.2) when the object cache is enabled. I had the same problem with the APC Object cache backend, and with Memcache. The problem doesn’t occur when not using any object cache backend.
Forum: Hacks
In reply to: Increase Number of Columns on Edit Post screenI could add a settings page for it, or you could edit the plugin code yourself – it’s pretty simple.
There is already a setting in the header for the number of columns, I wonder how it might hook into that?
Forum: Hacks
In reply to: Increase Number of Columns on Edit Post screenAhem. Bug number one fixed. 🙂
Forum: Hacks
In reply to: Increase Number of Columns on Edit Post screenBased on Mark’s hack code, I created a plugin to do this: third-column.zip. It’s very simple (the code is shorter than the copyright notice) but has the advantage of not editing any core files. If people approve, I’ll publish it for real.