Christian Neumann
Forum Replies Created
-
Forum: Plugins
In reply to: [Multiple Roles] custom roles, phpOkay, I will reconsider this. Might as well accept these roles as they have been added anyway.
Forum: Plugins
In reply to: [Multiple Roles] custom roles, phpThe plugin uses WordPress’ sanitize_key function (https://developer.www.ads-software.com/reference/functions/sanitize_key/) to sanitize the role id. WordPress does this in lots of places for different ids/keys (post type ids, menu ids etc). It does not do this for roles, but there is no UI for adding roles in WordPress, so WordPress does not have to sanitize user input for that. I would assume that role ids *should* be lower cased. If you have other examples, where WordPress or popular plugins allow creation of non-lowercased role ids, I will have a look. But for now, it doesn’t seem right to remove this sanitization.
Forum: Plugins
In reply to: [Multiple Roles] Plugin Up To Date?Hey,
I have no plans to add new features.
Best,
ChristianForum: Plugins
In reply to: [Multiple Roles] Maintenance StatusDone
Forum: Plugins
In reply to: [Multiple Roles] Maintenance StatusHey,
what’s the latest WP version you tested the plugin with? If you can confirm that everything works, I will update the tested version.
Best
ChristianForum: Plugins
In reply to: [Multiple Roles] Use with custom roles?Okay, thanks for the feedback.
Forum: Plugins
In reply to: [Multiple Roles] Use with custom roles?Ok, let me know If you find out something.
Forum: Plugins
In reply to: [Multiple Roles] Use with custom roles?Hey,
the plugin should work with other roles as well. It will list all roles that you are allowed to edit. Maybe that is the problem? Check the return of WordPress’ function https://developer.www.ads-software.com/reference/functions/get_editable_roles/, this is used by the plugin to retrieve the list of roles you may select. The list might get altered by other plugins, so please check this without other plugins active.
Best
Christian- This reply was modified 2 years, 5 months ago by Christian Neumann.
- This reply was modified 2 years, 5 months ago by Christian Neumann.
Forum: Plugins
In reply to: [Multiple Roles] New maintainer, plugin will be reopenedBack online!
Forum: Plugins
In reply to: [Multiple Roles] Setting $_POST[‘md_multiple_roles_nonce’]Hey,
please update to the latest version 1.3.7. If that doesn’t help, please give a bit more details.
Best
ChristianForum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] No error reporting emails?Ok, thanks for the feedback.
Forum: Fixing WordPress
In reply to: GalleryHey,
you should ask this in the WooCommerce support forum
https://www.ads-software.com/support/plugin/woocommerceIf these features belong to an other plugin or theme you should ask there for help.
Best
ChristianForum: Fixing WordPress
In reply to: Cant Upload images with Clean (English) filenames WordPressDid you try to install a fresh WordPress on the same webspace? Does the error persist?
Forum: Fixing WordPress
In reply to: Attachment page redirect to media fileIs it not possible to directly link to the media files?
If not, you have to use something like this (to be put e.g. in you (child) theme’s functions.php)
add_action( 'template_redirect', 'your_prefix_attachment_redirect' ); function your_prefix_attachment_redirect() { if ( is_attachment() ) { wp_redirect( wp_get_attachment_url( get_the_ID() ), 301 ); exit(); } }
- This reply was modified 7 years, 6 months ago by Christian Neumann.
Forum: Fixing WordPress
In reply to: Cant Upload images with Clean (English) filenames WordPressCould be a problem with one of your plugins. Did you try disabling all?