Mark Jaquith
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Help] Permissions, who can see helpThere is now a filter on the capability (‘edit_posts’ by default).
'read_posts' => apply_filters( 'cws_wp_help_view_documents_cap', 'edit_posts' ),Assigning them the edit_posts cap should work, but you could also use the above hook to return a lesser cap or a meta cap.
Forum: Plugins
In reply to: [WP Help] Error Duing Help Page SaveIs this still happening? I can’t reproduce the issue.
Forum: Plugins
In reply to: [WP Help] Can I embed an Amazon S3 hosted video?You should be able to use any shortcodes or HTML that you can normally post.
Forum: Plugins
In reply to: [WP Help] WP Help conflict Menu Humility ConflictAs Menu Humility is also my plugin, this is super ironic.
I have pushed out an update to Menu Humility (version 0.3) that fixes this and whitelists WP Help as a well-behaved plugin.
Forum: Plugins
In reply to: [WP Help] Is there a way to change the menu title?You can also just doubleclick on it to make it editable as a fun little shortcut. If you have the menu expanded you’ll get a live preview of your new title as you type, so you can craft a title that doesn’t wrap to two lines (ugly).
Forum: Plugins
In reply to: [APC Object Cache Backend] APC not working since WP 3.7Restart the PHP process.
Forum: Alpha/Beta/RC
In reply to: Browser Post Version CheckAskKim — any more luck narrowing it down to specific plugins? Alternatively, if you list your plugins for us, we can probably figure it out pretty quickly.
Forum: Alpha/Beta/RC
In reply to: Browser Post Version CheckFor issue #1: http://core.trac.wordpress.org/ticket/24755#ticket
Forum: Alpha/Beta/RC
In reply to: Browser Post Version CheckHaven’t been able to duplicate. So there might be a plugin interaction here.
Two issues:
- The message shouldn’t show more than once.
- The message shouldn’t show at all.
Forum: Plugins
In reply to: [Page Links To] Link to #joshlevinson is right, that you can use the WP native nav menus functionality to get a dummy parent item. As to making the “#” not go into the browser Location, that would require hooking in with Javascript and preventing the default action. I’m not sure it gives a lot of benefit. Having the # up there isn’t harmful in any way that I can think of.
Forum: Plugins
In reply to: [Page Links To] How To Automate..?You could use a similar technique to this plugin and hook into the permalink creation hooks and have it check your custom meta key.
Does this happen with version 1.9.2 of the plugin?
Forum: Plugins
In reply to: [Page Links To] no open in new windowsTry the latest version of the plugin, 1.9.2, which has better support for opening links in a new tab.
Forum: Plugins
In reply to: [Page Links To] Does not work with imagesIt’s not meant to redirect those URLs. There’s no place to hook in to do redirections, and it would break a lot of things. The plugin is meant to redirect WordPress post-object URLs, not URLs for static files.
Forum: Plugins
In reply to: [Page Links To] Does not work with imagesAre you expecting the attachement page to be redirected, or the raw attachement URL?