cojennin
Forum Replies Created
-
Forum: Plugins
In reply to: [Edit Flow] Error Message in WP 3.6Hey,
Is this occurring on an admin screen or some other page? What plugins do you currently have active (and what’s your active theme?). Did this occur when you clicked on something specific or were you just browsing around?Thanks!
-CJ
Forum: Plugins
In reply to: [Edit Flow] Some extensions causing server errorInteresting. So if you paste this code at the end of your functions.php file it causes an error, but pasted in custom_functions.php it seems to work without issue?
Excellent, thanks!
Would you be able to make a pull request with this code to http://github.com/Automattic/Edit-Flow/ ? I’d like to review it and if it’s it all good, merge the changes.
Thanks!
-CJ
Forum: Plugins
In reply to: [Edit Flow] Edit Flow Broken In Parts In WP 3.6Hey,
Sorry about all the problems you’re encountering. Would you be able to create some new tickets on GitHub documenting the issues you’re encountering? https://github.com/Automattic/Edit-Flow/issuesIt would be tremendously helpful in triaging what needs to be fixed. If not, no worries, I’ll try to cover what you’ve put here.
Working to get some fixes out quickly, so stay tuned!
Thanks!
-CJ
Forum: Plugins
In reply to: [Edit Flow] Some extensions causing server errorHey,
What were you doing when this error occured? Were you on the post editing screen, saving a post, browsing the site? What does the code around that function look like?Thanks!
-CJ
Forum: Plugins
In reply to: [Edit Flow] Calendar won't showHey, what other plugins do you have installed and activated? What theme are you currently using? What version of WordPress are you using? I know it’s a bit annoying to have to dredge up all this info, but it’d be very helpful in diagnosing the issue.
Thanks!
-CJ
Forum: Plugins
In reply to: [Edit Flow] Add a delete button in an Editorial Comment for adminsI was almost sure we had a ticket opened for this on GitHub. Feel free to open one if you have a github account (so you can follow it’s progress), if not I’ll make sure to open this sometime tonight or tomorrow.
Forum: Plugins
In reply to: [Edit Flow] Can't preview unsaved changes on another author's postYep, I’ve recreated this issue as well. I’ve opened up a ticket on GitHub, feel free to follow along there: https://github.com/Automattic/Edit-Flow/issues/206
Righteous. Nice work snoopin that out. Not sure I know that plugin (is it this one?) but reinstalling it and tweaking around might do the trick.
Ooph. Premium theme. Makes it a bit more difficult to fix, but hopefully not impossible. If you’ve disabled all the plugins and it still isn’t showing up, chances are pretty good that it might be the Alterna theme.
First thing you could try is going directly to the url of the page, which would be http://url of your site/wp-admin/edit.php?post_type=document
(Need to be logged in to do the above. http://url of your site/wp-admin/edit.php is the url you use to access your posts from the admin side, by adding the “?post_type=document” you’re requesting that it show you the “Documents” screen instead of the “Posts” screen.)
So just plug that url (substitute the “url of your site” with the actual url of your site). With any luck, the conflict is purely a superficial one, and the post type exists but Alterna is preventing the actual sidebar link from being shown.
If that works, then maybe check around the Alterna admin for adding or removing menu items from the admin sidebar? Might be that they have in place some option which prevents menu items from being shown or displayed.
If you can access the “Documents” page but you can’t find said option, there’s two possible courses of action. The first would be to try changing the location of the “Documents” link and see if it’ll show up. This can be accomplished by pasting something like the following code into the functions.php file of your theme (hopefully it has one).
add_filter( 'document_revisions_cpt', 'change_document_menu_location', 10, 1); function change_document_menu_location( $args ) { $args['menu_position'] = 5; return $args; }Try modifying the “5” to any of the numbers located here, underneath the “menu_position” section.
The other option you can try is opening up a support ticket with Active Focus to see if they know what’s going on, or have some sort of simple solution or trick to trigger showing menu items that have been registered by another plugin.
Hopefully this helps, feel free to post back here if you have any more questions or concerns. If you do open a ticket, feel free to post the link and maybe I can +1 it or something along those lines to get it moving along.
Strange. Would it be possible to get a run down of what sort of plugins you’re currently using (what theme as well)?
Is it not showing up for certain kinds of users or not showing up for everybody (ie: can a user with the role ‘Admin’ see it, but not one with the role ‘Subscriber’)?
Forum: Plugins
In reply to: [WP Document Revisions] Document type gone from new version?Did you by chance overwrite the wp-document-revisions-type-custom-field.php file? Could have been storing it in the directory which you updated to. Or was it turned off somehow?
I haven’t checked, but I’m fairly confident that it’s the file you need. I’ll double check when I can, but see how it goes if you get a chance.
Forum: Plugins
In reply to: [WP Document Revisions] Can't restore revisionsJust wanted to follow up on this so you nobody is left out in the cold. The following is a link to the commit which should solve this issue. Once it’s merged you can download the code from GitHub and fix this issue (you could even do it now if you’re confident enough). Hope that helps.
Forum: Plugins
In reply to: [WP Document Revisions] You are not authorized to access that fileCool. Just took a look at the code. The issue is a non-authorized user does not have access rights to a revision by default.
Not sure if you do much coding, but if you check out the line here on GitHub, you’ll see that it’s asking if the current user can read document revisions. Anyone who can log in by default can read revisions. Anyone not logged in can’t (that’s explained further along in the code).
Some options to let non-authenticated users check out revisions:
1. Utilize the ‘serve_document_auth‘ filter to enable non-logged in users to access revisions.
2. Instead of linking to a revision, link to the most updated documentThere might be some other options as well, but those are the two I can think of off the top of my head that might be the easiest to implement.
Feel free to post back here if you have any more issues.