Milan Dinić
Forum Replies Created
-
Forum: Plugins
In reply to: [Cache Images] [Plugin: Cache Images] Some images not cachingIs there something preventative in the URL of this image?
Yes, it is a + sign in file name. I was aware of this issue even before public release but didn’t figure out how to solve it. If I find solution, I will update a plugin.
Also, there are a few BMP images on my client’s old Blogger site which didnt get imported. Any way to force odd image formats to come over as well?
I use built-in function for sideloading of images that only support jp(e)(g), png and gif formats. Also, for WordPress only those formats are images and thumbnails won’t be generated for other, like BMP.
So to solve this, I will need to add conditional to check if file is BMP and import it as regular attachment.
Forum: Plugins
In reply to: Lazyest Gallery & WP Smush.itI have never used Lazyest Gallery but if it allows upload of images outside of built-in WordPress media library, I don’t see what is a problem to add a hook so that WP Smush.it can be used.
Smush.it, service that is used for images’ processing, has limit of 1MB per file so you can’t do anything about it.
I’m not sure, but I think that thumbnails (all three types) should be processed even when original size isn’t, if they are smaller than 1MB.
No, I hope that Alex will update plugin with those fixes. Maybe he just doesn’t have time now.
Forum: Themes and Templates
In reply to: can't get set_post_thumbnail_size() to workI don’t get the little “post thumbnail” box like everyone else seems to. Instead, I get the “Featured Image” option.
Box “Post Thumbnail” was renamed to “Featured Image” in version 3.0. So everything is same as in “Post Thumbnail” except name.
Forum: Plugins
In reply to: Cache Images plugin does not workYou will need to change code of Cache Images. But I’m not 100% sure that this will work since it depends were same rules followed when images were added to posts.
I had exactly the same problem last week and already wanted to post a code suggestion for Alex. You need to include file wp-admin/includes/file.php before you call functions for attachemnts.
require_once(ABSPATH . 'wp-admin/includes/file.php');Alex should add conditional before download_url is used in WP Smush.it to check if download_url function exists, and if not, to load file like above.
Forum: Plugins
In reply to: [Plugin: PollDaddy Polls & Ratings] Fixing i18n issuesI still didn’t get any reply on this nor plugin has been updated.
Forum: Plugins
In reply to: Cache Images plugin does not workDid you have thumbnails from Blogger which were pointing to larger versions of those images? If that is a case, Cache Images won’t cache large images since they were actually not used in posts, it is just a link to them. Only images that are used in posts (in img tags, eg.
<img href="http://example.com/pic.jpg" />) are cached.Forum: Plugins
In reply to: [Cache Images] [Plugin: Cache Images] Anyway to automate the process?I was thinking about this but I wanted to first release improved version of initial functionality.
Also, I’m still not sure how that would work: will autocaching be done always when plugin activated or user will need to check something.
Forum: Plugins
In reply to: [Plugin: Hot Linked Image Cacher] Moving the images from /HLIC/ to GalleryI meant to try it instead of Hot Linked Image Cacher for sideloading from external sources since it will do complete job.
For adding of images to library that are already on a site, you need to create new functions (eg. based on Cache Images) or you can try W3 Total Cache which advertise feature like that (I didn’t try it).
Forum: Plugins
In reply to: [Plugin: WP Smush.it] Not Smushing it!Will this get in plugin? Why there is this limitation anyway?
Forum: Plugins
In reply to: [Plugin: WP Smush.it] how to smush all imagesHere is how to smush all images. Install plugin AJAX Thumbnail Rebuild and run it. Since it regenerates all images, WP Smush.it will be used for each image. Note that since this plugin uses AJAX, you shouldn’t get “out of memory” error so you can smush huge number of images.
Also note that if you have previously smushed images, statistics for them will be lost (you’ll get “No savings” message for them).
Forum: Plugins
In reply to: [Plugin: Hot Linked Image Cacher] Careful On The UPGRADE Here Is A ClueTry Cache Images which adds images to WordPress media library and default upload directory, and uses original file names. None of previously cached images is deleted on second or above run.
Forum: Plugins
In reply to: [Plugin: Hot Linked Image Cacher] Moving the images from /HLIC/ to GalleryTry Cache Images which adds images to WordPress media library and default upload directory.