Mohammad Jangda
Forum Replies Created
-
This is fixed in v2.5. Appreciate the patch, Mike!
v2.5 works with 3.1
Forum: Plugins
In reply to: [Co-Authors Plus] [Plugin: Co-Authors Plus] Co-Authors-Plus v2.5 coming soon!2.5 is out!
What was the error you saw when activating?
Forum: Plugins
In reply to: [Co-Authors Plus] [Plugin: Co-Authors Plus] Co-Authors-Plus v2.5 coming soon!Best case: tomorrow.
Worst case: Monday.Just something I forgot to include! Whoops!
I’ll make sure it gets add to the next release.
Forum: Plugins
In reply to: [Co-Authors Plus] How Co-Authors Plus stores information in the databaseThey’re stored as terms. Each user has an associated term in the author taxonomy based on their username.
SO if my username was kylehardgrave, I would have a term for the author taxonomy called kylehardgrave. To add authors to posts, you just assign their associated terms to the post. If you’re going to do a bulk import, you can probably use the
add_coauthorsfunction, e.g.$post_id = 1; $authors = array( 'kylehardgrave', 'anotheruser' ); global $coauthors_plus; $coauthors_plus->add_coauthors( $post_id, $authors );Hope that helps.
If you can include some more info about what you’re trying to do and maybe some of the code you’ve tried, I might be able to help you out.
And, here’s the other sample: https://gist.github.com/805230
The code sample adds administrators to all emails sent by Edit Flow. You can play with the roles by changing line #9.
Hope that helps!
It’s possible to do both those things with a bit of code.
Here’s a temporary way to disable the status notifications: https://gist.github.com/804947
It’s a bit hacky but should work until we release some better filters in the next version.
I’ll write up a sample for emailing admin option as well.
@rjmw Thanks for the report. We’ve noticed a similar issue with Bulk Edit but haven’t been able to replicate the issue as you describe. But I think that the cause is likely the same.
We’ll work on a fix and hopefully get it out soon.
Forum: Plugins
In reply to: [Edit Flow] Edit Flow and Role scoperI spent a lot of time looking over the edit flow code through the weekend. I would like it set up so sending it to pending review would send it to the editor for the category that it’s assigned and limit what status you can send it to so only an editors can set certain statuses and writers can set the other statuses.
Here’s some sample code you can use to limit statuses to specific roles using Edit Flow: https://gist.github.com/789255
It limits author to only have access to ‘Draft’ and ‘Pitch’, whereas editors (and administrators, by omission) have access to all of them.
Hopefully this should point you in the right direction 🙂
Forum: Plugins
In reply to: [Edit Flow] [Plugin: Edit Flow] Multiple notification emails being sentWe haven’t had any similar issues reported but it is possible. With 0.6.1, we modified the notification system to use a queuing mechanism (for performance reasons), and my guess is that one of the queue items (i.e. individual email) is getting triggered multiple times. We’ll do some digging to see what’s up.
Thanks for the report. We’ve patched this and will be releasing a new version very soon.
Looks like you’re right! Post Titles are definitely broken in email notifications. We’ll try to get this fixed ASAP!