_az_
Forum Replies Created
-
Forum: Plugins
In reply to: [Amazon Web Services] AWS SDK v3Ok, thanks for the fast reply!
Forum: Plugins
In reply to: [bbPress Multi Image Uploader] 100% upload status, but nothing is uploadJust checked and there are no errors showing up.
Also the image showed up! Must have been some other problem, probably related to S3 upload…
Forum: Plugins
In reply to: [bbPress Multi Image Uploader] 100% upload status, but nothing is uploadFrom the description regarding the wordpress setup (which is very generic, to say the least 🙂 of the previous posts above, it is likely, that the issue is the same.
So i did not want to create a duplicate for obvious reasons and thought it to be a good idea to give more information concerning the issue.
Forum: Plugins
In reply to: [bbPress Multi Image Uploader] 100% upload status, but nothing is uploadI have the same issue. The uploads is processed, but i can not find anything in the folders or in the database.
Is there a github account for this plugin? I will try to resolve the issue here and if you want to collaborate, i can create a pull request.
Forum: Reviews
In reply to: [Manual Image Crop] Doesn't seem to work withThe edit ate my link…
Forum: Reviews
In reply to: [Manual Image Crop] Doesn't seem to work withForum: Reviews
In reply to: [Manual Image Crop] Didn't work at allI ran into the same error and after some debugging in the plugin i could the find the error in my theme/plugin image definitions.
My theory now is:
In order for the plugin to work, you have to have enable the “crop” flag in the third parameter for at least one image size either in:
set_post_thumbnail_size(1,2,true)
or
add_image_size(1,2,true)There seems to be no check for that condition in the plugin itself.
I ran into the same error and after some debugging in the plugin i could the find the error in my theme/plugin image definitions.
My theory now is:
In order for the plugin to work, you have to have enable the “crop” flag in the third parameter either in:
set_post_thumbnail_size(1,2,true)
or
add_image_size(1,2,true)There seems to be no check for that condition in the plugin itself.
Forum: Fixing WordPress
In reply to: How to test if admin bar is visibleI have 2 wrappers for a dynamic layout (fixed top bar + fixed bottom bar). Maybe this example helps:
<body <?php body_class(); ?>> <div id="wrapper_top"> <div id="wrapper_bottom"<?php if(is_admin_bar_showing()) echo ' style="bottom: 28px;"'; ?>> <div id="container">Otherwise the distance from the bottom ist 0px (in style.css)