Peter
Forum Replies Created
-
Thanks for the updates. Try setting “Redirect restrictions” to “Any http or https URL”
Hi, that is not a workflow that the login redirect code would affect. I’d suggest checking other plugins or rewrite rules that could be the cause.
Forum: Plugins
In reply to: [Peter's Post Notes] Use filters for configurable settings insteadAnother good point 🙂
Although, if the UI is backed by the wp_options table, then you can make life a bit easier by scripting the updates to the table.
Still, something I’ll have to consider. Thanks!
Forum: Plugins
In reply to: [Peter's Post Notes] Use filters for configurable settings insteadYou are right — it needs to be less destructive on update. I will have to add that to a future version, probably via a UI to manage the settings and save them in the WordPress options table.
Forum: Plugins
In reply to: [Peter's Post Notes] Hide 'Add notes' on DashboardI’ve added a setting $ppn_general_notes_required_capability in version 1.4.0 of the plugin. If the current user doesn’t have this capability, then they can only add a private note.
The default setting is “edit_posts”, which even a contributor should have. You can change this to “manage_categories”, for example, to allow only editors and administrators to be able to add general notes.
Hi all, thanks for reporting this. I’ve fixed it in version 1.4.0 of the plugin.
Forum: Plugins
In reply to: [Peter's Post Notes] WP DB ErrorHi all,
Thanks for reporting this. It should now be fixed in version 1.4.0 of the plugin.
Thanks for sharing! I’ve added this to version 1.4.0 of the plugin now.
Forum: Plugins
In reply to: [Peter's Collaboration E-mails] Custom taxonomies not loading in settingsThank you very much for sharing back your findings.
That is definitely some weird behavior, but something I’ll have to investigate!
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] needed buddypress suportThanks for sharing!
I’m not a BuddyPress user, so I’ll have to set it up to test it. Or, if other BuddyPress users could test and confirm this, I would happily add it to the plugin code based on their testing.
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Not working with WordPress 3.5Unfortunately I don’t, but I bet there are many plugins and tutorials out there for embedding login forms. Good luck!
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Not working with WordPress 3.5Thanks everybody for reporting this and posting a workaround. Version 2.6.1 of the plugin now changes the required capability to “manage_categories” instead of “manage_links” which should allow editors to see the redirect management page again. If you are upgrading from an existing version of the plugin, you might have to first visit the redirect management page with an administrator user to complete the upgrade.
Thanks for sharing. Does that work in your environment? It might not if the user account hasn’t yet been initialized at that step. wp-login.php get the user account like this:
$user = wp_signon(”, $secure_cookie);
Any plugins implementing a custom login process should grab the user outside of the redirect process and pass it to the login_redirect filter.
Hi, yes, that is the expected behavior. My plugin catches the transition of a post status to and from “pending” in order to send e-mails, but it does not affect the actual permissions. To modify permissions / roles and policies on a site I would suggest looking at a plugin specifically designed for that (and use it in addition to my plugin), such as this one:
http://wordpress.org/extend/plugins/capability-manager-enhanced/
Forum: Plugins
In reply to: [Peter's Collaboration E-mails] Custom taxonomies not loading in settingsThanks for reporting this. At the moment I don’t know how to move the loading order of the Ajax functions to be later, as there’s no parameter for wp_ajax_ actions to specify when they are loaded. The solution might simply be to use an alternative way to define Ajax functions within WordPress, but I have not looked at that yet (and can’t for the rest of the month, unfortunately). Any and all tips are appreciated!