MrDamasajaga
Forum Replies Created
-
Could you please explain why this module needs write permissions on the root directory?
I consider this insecure. I love the module, but won’t give php write permissions on my root folder. Shouldn’t it be enough to have write access in the subdir “wp-snapshots”?Forum: Plugins
In reply to: [Sharpen Resized Images] Broken WP 3.5Thank you.
The notice is no error indeed, but the problem does create an error during upload (failed), it cancels my upload. (Using a plugin on the frontend)Forum: Plugins
In reply to: [Imsanity] WordPress 3.5 use `wp_get_image_editor` instead of `image_resize`I have exactly the same problem. Broken for 3.5 ?? Fix would be appreciated.
Forum: Requests and Feedback
In reply to: New media upload window could be improvedThat is indeed a really great feature photoMaldives.
In my use case however I don’t want to confront the novice users with such a clouded view and show them the steps to take. Some people don’t even know how to drag and drop in a site.Anyhow there is a fix now!
Check:
https://www.ads-software.com/support/topic/wp-35-any-way-to-default-add-media-to-upload-files?replies=27#post-3709109Forum: Requests and Feedback
In reply to: WP 3.5 – any way to default "Add Media" to "Upload Files"?Tested and confirmed!
Really great idealien, thank you.
Forum: Requests and Feedback
In reply to: WP 3.5 – any way to default "Add Media" to "Upload Files"?As far as the starting problem of this topic, the “Default to Upload Files Tab” (media_upload_default_tab) won’t be supported. See: https://core.trac.www.ads-software.com/ticket/22186#comment:46
Forum: Requests and Feedback
In reply to: New media upload window could be improvedAs far as the “Default to Upload Files Tab”, this won’t be supported. See: https://core.trac.www.ads-software.com/ticket/22186#comment:46
Any other possibilities?
I totally agree that we need more freedom here.
Forum: Fixing WordPress
In reply to: Stop Authors from uploading to the media libraryThis doesn’t seem to work in WordPress 3.5.
The default tab filter works in a front end plugin of mine, but in the back end it’s no use.
Unsetting tabs also doesn’t work anymore … New ideas anyone?
In my case the problem was in my custom theme and in the admin theme.
Therefor I changed the code of the plugin file admin-bar.php on line 177 to:foreach ( array( 'wp_head', 'admin_head' ) as $hook ) { add_action( $hook, create_function( '', "echo '<style>body.admin-bar #wpcontent, body.admin-bar #adminmenu { padding-top: 0px !important; } html.wp-toolbar { padding-top: 0px !important; } body.admin-bar .navbar-fixed-top { top: 0px !important; }</style>';" ) ); }
If you just need the fix for the admin theme use this:
foreach ( array( 'admin_head' ) as $hook ) { add_action( $hook, create_function( '', "echo '<style>body.admin-bar, body.admin-bar #wpcontent, body.admin-bar #adminmenu { padding-top: 0px !important; } html.wp-toolbar { padding-top: 0px !important; }</style>';" ) ); }
Same here. The class “wp-toolbar” on the <html> should get removed.