Ben Balter
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: WordPress vs. SharePointAlthough true, very different animals, one step towards giving WordPress parity with SharePoint is that WP now has formal document management support (with version control and file hosting). If you haven’t already made your decision, you may want to take a look at WP Document Revisions.
Forum: Plugins
In reply to: [WP Document Revisions] [Plugin: WP Document Revisions] ETA to 1.0Are you looking to list all documents? If so, there’s a plugin I wrote called “Count Shortcode” which I’m using on a site along with document revisions.
[count post_type="document"]should give you a count of all documents (with a link to a list), or[count workflow_state="final"](or any other taxonomy) should allow you to filter. Although maybe not 100% what you’re looking for, it should work out of the box.(alternatively
yourdomain.com/?post_type=documentshould work too).If you’re looking for revisions, there’s an example shortcode in the code cookbook
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] Add resume to page templateI tried with
echo do_shortcode( '[wp_resume user="user"]' );and it seemed to work. Note 1) you need to echo the return fromdo_shortcodeand 2) you may need to specify a user since it normally gets it from the page/post the shortcode is embedded in.To bypass the error if calling directly, remove the
wp_reset_query()from the bottom of resume.php since your not in the loop.Forum: Plugins
In reply to: [WP Document Revisions] [Plugin: WP Document Revisions] Network compatible?There should a revision summary dialog box, per this screenshot. Does it not appear? Can you toggle it via the display options (top right)?
First chance I get I’ll give it a try in 3.1, but if you can, definitely should work in 3.2.
Forum: Plugins
In reply to: [WP Document Revisions] [Plugin: WP Document Revisions] ETA to 1.0Thanks for the kind words.
There are only a handful of small issues left on the backlog.
Right now I’m really just testing and getting feedback from the community to make sure it’s a solid 1.0. There’s a code freeze scheduled for the 15th, and final code should be submitted by the end of the month.
Forum: Plugins
In reply to: [WP Document Revisions] [Plugin: WP Document Revisions] Network compatible?Looking through the 3.2 changelog, nothing in particular stands out. There might be some minor CSS issues with the backend redesign, but that’s about all I can think of. I’ve been testing in 3.2 and 3.3. It was mostly to require the PHP and MySQL version bump.
Forum: Plugins
In reply to: [WP Document Revisions] [Plugin: WP Document Revisions] Network compatible?As soon as the repository refreshes, the latest version (labeled 0.5.4) should fix this and a few other multisite issues. The document upload directory should appear on the network settings page.
Thanks for the feedback. Let me know if that solves it?
Forum: Plugins
In reply to: [WP Document Revisions] [Plugin: WP Document Revisions] Network compatible?It has not been fully tested on Multisite, yet, but will be fully functional before the 1.0.
I think I have a pretty good idea of what’s going on, and hope to have a fix soon. In the mean time, if you change the upload directory (under settings->media->document upload directory) it should work.
Thanks for the kind words and feedback (keep it coming!)
– Ben
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] Summary ProblemThanks for the heads up. Fixed in 2.0.1 which should appear for upgrade momentarily.
Forum: Plugins
In reply to: [WP Resume] Page not foundDid you create a page an add the proper shortcode? This walkthrough may shed some light:
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] Settings Refuse to Update/SaveAre you using the latest version (1.6.4)? There was a bug in a previous version that would not display options after save (although the options were saved).
After saving, try clicking the options link from the resume menu and see if the settings display once the page reloads. Alternatively, you can add a second user to your site if it is a single-user site, but again, this issue should have been resolved in the latest version. Please let me know if that is not the case.
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] Summary ProblemGood catch and thanks for the heads up.
Made the change in the development version and will be sure it makes its way into the next release.
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] Catchable fatal errorSorry about that, but thanks for the heads up. Corrected one problem and caused another. It seems to only effect single-user blogs, so for a quick fix, you can simply add a second user to your site.
A new version (1.6.4) should be appearing in the repository when it refreshes momentarily, and should correct the issue. Sorry for the trouble.
I also added internationalization support if you would like to translate the backend as well. You can grab the POT file from the plugin itself, and WordPress has some instructions on the process
Forum: Plugins
In reply to: [WP Resume] [Plugin: WP Resume] JavaScript trailing commaShould be fixed in the development version. Thanks again for all your help.