Frumph
Forum Replies Created
-
Forum: Plugins
In reply to: [Comic Easel] Duplicate Chapters appearedI would need to see it, can you send me a URL or screencapture on what you’re talking about?
Forum: Plugins
In reply to: [Comic Easel] Remove Menubar from ComicPressLooks like you found the option in the comicpress theme to do that ;/
Forum: Plugins
In reply to: [Comic Easel] Comic Post InformationThat’s part of the ComicPress theme, go to appearance -> comicpress options, you can disable the mini calendar and stuff from appearing.
Adding custom images to that would be as simple as using CSS code to replace the image with one of your own
Forum: Fixing WordPress
In reply to: Uploading images issue for non adminsThen that’s a positive that some plugin or something code wise is modifying the roles.
Disable all plugins and try, switch themes and try .. narrow it down.
Forum: Fixing WordPress
In reply to: Uploading images issue for non adminsUse a role modifying plugin to see what rights individual people have to be sure that they don’t have upload rights.
https://wordpress.org/plugins/user-role-editor/
Like the one linked.
There are a plethora of others to check roles and assign capabilities, check them out find the one that will work for you to determine why those roles are not being used as you think they should be.
Forum: Fixing WordPress
In reply to: Uploading image tries to MOVE the image!?Not a WordPress problem, it’s a Hosting problem.
Forum: Fixing WordPress
In reply to: Uploading images issue for non adminsIt sounds like something, a plugin is modifying the ‘roles’ for your users since you say it happened after upgrading to 4.
Check your plugins to see if any of them might have a reason to do that?
Otherwise.
When you say “authors” do you mean the contributor role?
function add_theme_caps() { $role=get_role( 'contributor' ); $role->add_cap( 'upload_files' ); $role->add_cap( 'edit_published_posts' ); } add_action( 'admin_init', 'add_theme_caps');This code here allows contributors to upload images and edit their own posts. It’s never been default to allow contributors to upload images.
You would add it to your functions.php of your child theme, and/or main theme if no child theme.
Forum: Fixing WordPress
In reply to: Uploading image tries to MOVE the image!?Yes; That’s part of the problem.
You see when things are uploaded the HTTPD (the web daemon) puts the file first into a TEMP directory THAN moves it to where it needs to be.
So, if the temp directory is full or you don’t have permission to have the file move from the temp to the wp-content/uploads you would get that error.
You should at this point contact your hosting (or whatever amounts as your server guy) and say you’re having this issue.
Forum: Fixing WordPress
In reply to: Any hack how to make #wrapper opaque but post images solid?!Important; means to ‘not override by anything later in the parsing by CSS’
Since CSS is parsed by reading from the first that is shown then goes down the file, anything after the original is called “overriding” so adding the !Important; means not to have anything else override it
Forum: Fixing WordPress
In reply to: Any hack how to make #wrapper opaque but post images solid?If you add the transparent line and switch to this:
[removed by poster because of private URL]
By using one of my transparent png’s you can tell it’s the transparent PNG you are using.
Forum: Fixing WordPress
In reply to: Any hack how to make #wrapper opaque but post images solid?background-color: Transparent!important;i’m not seeing your background-color: transparent; come up
Forum: Fixing WordPress
In reply to: Any hack how to make #wrapper opaque but post images solid?However, I see it’s fine in the CSS.. the problem I see now is that you are overriding the background-image but not noticing that there’s still a background color there
#wrapper { background-color: Transparent; background-image: url('/img/opaque03.png'); }It also appears the opaque03.png is wayyyy too opaque
Forum: Fixing WordPress
In reply to: Any hack how to make #wrapper opaque but post images solid?that would be
background-image: url('/img/opaque03.png');No idea why you’re adding the a
Forum: Fixing WordPress
In reply to: Any hack how to make #wrapper opaque but post images solid?Dear Iesnaya, I did already.
Without being able to have a link to view what you’re doing though; it seems it might be a bit harder to assist you on this.
Is it difficult for you to add a / before the img/opaque03.png path ?
Forum: Fixing WordPress
In reply to: Any hack how to make #wrapper opaque but post images solid?If the .css file is in web/ you’re not ..
otherwise your path should be /img/opaque03.png
The path is relative to where the .css file you’re editing is. just put a / in front of /img and try it out