lhSquared
Forum Replies Created
-
I am also seeing this issue. The strange thing is that users that are receiving the error message in the Simple Fields file uploader can use the file uploader to upload images to the post content.
I have found that giving the users the ability to activate plugins does fix this issue, but opening up this functionality to users that are being restricted seems to defeat the purpose of Role Scoper.
Maybe if Simple Fields opened up the ability for any access level to use the file uploader this issue would be fixed.
Thank you for your help!
I tried this, but it did not fix the issue that I am having. For more clarification, the custom taxonomy for the tags is working, and I am able to create tags, but when I try to link them to blog posts the tags will not stay associated to the post. I see the right side bar element for the Blog Tags, and I can add a tag to the post, but once I Update the post the tags disappear and the link between the post and tag is not saved.
Thanks,
LucasThanks for replying. Yes, by “custom Tags” I do mean custom taxonomy. Here is the script that I am using to register the taxonomy:
register_taxonomy( 'blog_tags', 'blogs', array( 'hierarchical' => false, 'labels' => array( 'name' => 'Blog Tags', 'singular_name' => 'Blog Tag', 'search_items' => 'Search Blog Tags', 'popular_items' => 'Popular Blog Tags', 'all_items' => 'All Blog Tags', 'parent_item' => null, 'parent_item_colon' => null, 'edit_item' => 'Edit Blog Tag', 'update_item' => 'Update Blog Tag', 'add_new_item' => 'Add New Blog Tag', 'new_item_name' => 'New Blog Tag', 'separate_items_with_commas' => 'Separate Blog Tags with commas', 'add_or_remove_items' => 'Add or remove Blog Tags', 'choose_from_most_used' => 'Choose from most used Blog Tags' ) ) );On the wp-admin side, the user that is trying to use these tags is an admin user. There is no custom restrictions or modifications on this user for the tags.
Thanks for your help again.