Ben Balter
Forum Replies Created
-
Forum: Plugins
In reply to: [Storify] [Plugin: Storify] More publishing errorStable version with fix (1.0.5) should now be in the repo.
Forum: Plugins
In reply to: [Storify] [Plugin: Storify] Publishing error@moose29 I believe this thread is related to your problem and contains a link to a development version that may fix the problem.
Forum: Plugins
In reply to: [Storify] [Plugin: Storify] More publishing errorCould you try giving this development version a try?
WP Document Revisions should do exactly what you’ve described in both threads with very little configuration.
I can’t speak to the error you are having, but I know I’ve used that generator with several projects, and have not had any trouble. There may be some other plugins that have graphic interfaces to do the same, but I have not used them so I cannot reccomend one.
As for permissions, take a look at either the Members plugin or Role Scoper, both of which should allow you to lock down permissions to certain post types, categories, etc.
/Documentsshould work if pretty permalinks is enabled (and your theme displays posts on index.php), otherwise?post_type = documentsshould do the same.I hope the above prove helpful, otherwise, I am glad to connect on a more formal basis if this is something you are interested in pursuing.
Forum: Plugins
In reply to: [Storify] [Plugin: Storify] Compliments to the chefThanks for the kind words 🙂
Forum: Fixing WordPress
In reply to: Publishing from Storify loses top of articleSo there was a bit of a logical tradeoff. Either the plugin could go back and insert the description for every already published Story (potentially disrupting a post or double adding the description), or it could only work going forward by default, and to err on the side of caution, I chose the later.
If you click screen options in the top right corner of the post you’re having trouble with, and enable the “custom fields” metabox, you should see a entry labeled “storify_added_description”. If you delete that entry for any already-existing posts that you want the description to now appear, it should work.
…unless your problem is with a new post?
Forum: Fixing WordPress
In reply to: Publishing from Storify loses top of articleThe next version of the plugin should resolve the issue, or if you’d like, you’re welcome to give the development version a try, which includes the fix.
Forum: Plugins
In reply to: [Storify] [Plugin: Storify] Page titles in Dashboard brokenAlso, if you’d like, you’re welcome to give the development version a try which should resolve the issue.
Forum: Plugins
In reply to: [Storify] [Plugin: Storify] underscore in username bugSorry about that. Look for an updated stable version soon which will address that issue.
Or, If you would like, you can also give the development version a try, which should include the working fix immediately.
Forum: Plugins
In reply to: [Storify] [Plugin: Storify] Page titles in Dashboard brokenThanks for the feedback and sorry for the trouble.
Look for a update notice with a fix for this soon.
Also, feel free to fork the version on github… if you find any bugs, more than glad to accept a pull request.
So even on that one, for example, you’ll notice there’s a
document_shortcode_attsfilter right below that that you can hook into prior to the shotcode being processed.Either way, rewrote the way the shortcode handles arguments. The link to the dev version above should now work with
author_name.Specifically the shortcode should now accept:
author,author_name,cat,category__and,category_name,day,hour,meta_compare,meta_key,meta_value,meta_value_num,minute,monthnum,name,numberposts,order,orderby,p,post_parent,post_status,second,tag,tag_id,{tax},w, andyear.Forum: Plugins
In reply to: [Edit Flow] [Plugin: Edit Flow] WP Document Revisions Plug in errorSorry to hear you’re having trouble. If you give the development version a try, linked below, it should solve the problem, otherwise, look for a stable update to address this issue very soon.
https://github.com/benbalter/WP-Document-Revisions/zipball/develop
In theory, you shouldn’t have to update the plugin files at all. Most if not all of what the plugin does is hooking into the existing WordPress Plugin API, and then a handful of functions I’ve actually created additional API endpoints (for example, the action
document_editfires when WP loads the edit document screen).I’d make each bit of functionality a separate, stand-alone plugin. The custom taxonomies can come from the custom taxonomy generator, and just set the post type to document. I’ve done that on a handful of sites.
If you properly add the custom taxonomies, you can add the custom columns using admin columns or just google and there’s some good tutorials out there for how to do it manually.
I’m going to give it a bit of testing still before I push it to the stable version, but I believe the below linked version should solve your problem:
https://github.com/benbalter/WP-Document-Revisions/zipball/develop
– Ben