Peter
Forum Replies Created
-
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Private pages breaks pluginHi — the redirect plugin only handles the redirect. You should use an additional plugin to allow you to customize permissions (or write some template code, depending on how you’ve set up your site).
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Private PagesHi — the plugin only handles the redirect itself. To control permissions, you should use another plugin that enables you to customize the WordPress permission system.
Forum: Plugins
In reply to: [Peter's Post Notes] Getting Page/Post Note in backendFor now I haven’t made a nice data extraction layer. However, you can build your own based on the ppn_meta_contents() function in the plugin file.
This might be an issue beyond the realm of the redirect plugin. By default WordPress strips the dot in the creation of the username, thus it is possible that by the time the username is passed to the plugin, the dot is no longer there. There is nothing in the plugin specifically that tries to strip dots.
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Problem with languagesIf WMPL provides easily accessible information (via a global variable or function) you could write a custom URL variable as described in “Custom variable parameters” here:
http://wordpress.org/plugins/peters-login-redirect/other_notes/
The plugin redirects on login, but after a user has logged in, if you access the admin panel directly at /wp-admin, the plugin does not try to redirect you anymore. FYI anyway, to forcefully remove the plugin, you’d have to remove the files.
Thanks for reporting that. I’ve now released version 2.7.1 that fixes a bug that was preventing role-based login URLs from being saved properly. However, it would have silently failed instead of providing that error. If the problem persists for you, try changing the “Redirect restrictions” setting at the bottom of the settings page.
Forum: Plugins
In reply to: [Peter's Collaboration E-mails] Feature request: edit email templateFor now, you’ll have to edit the plugin file itself, or use this plugin to append notes per post: http://wordpress.org/plugins/peters-post-notes/
In the future, I could add a “hook” / filter so that you could extend that system.
Forum: Plugins
In reply to: [Peter's Collaboration E-mails] All emails sent are not translated ??Hi, the e-mail strings are marked as translatable. Perhaps for the language you need, the translation file is incomplete? If that’s the case, you could edit the relevant .po file with a program such as POEdit and add the missing translation strings.
Hi Jason,
If Sidebar Login is overriding the redirect URL, you could set the URL in that plugin to be the intermediate URL in my plugin. This is detailed a bit here:
http://wordpress.org/support/topic/sidebar-login-widget-woocommerce-not-redirecting
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Possible Future IdeaSorry, no ETA 🙁 However, you can add the specific functionality you need in the meantime by extending the plugin as described here:
http://wordpress.org/extend/plugins/peters-login-redirect/other_notes/
Specifically, you can use the “rul_before_fallback_logout” filter to hook in your own function that checks whether the current user is an admin user.
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Problem with WP FLoginHi, the “Custom “My Portal” link” section at the bottom of this page might help get you started:
http://wordpress.org/extend/plugins/peters-login-redirect/other_notes/
Thanks for the code contribution! I should add that for the next release.
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Possible Future IdeaThanks for the suggestion! It’s something that I wanted to add when I first built that feature, but it just takes time…
Forum: Plugins
In reply to: [Peter's Blog URL Shortcodes] upload_url_path and upload_path are emptyAh good. I’ve updated the plugin now to consider wp_upload_dir (and the ‘baseurl’ return element) first. Thanks again!