Michael Zangl
Forum Replies Created
-
Forum: Plugins
In reply to: [Add Watermarks] Colors are dulled when adding watermarkNice to hear ??
Forum: Plugins
In reply to: [Add Watermarks] Colors are dulled when adding watermarkDid you experience the same behavior on the thumbnails?
The plugin is using the gd image library internally. You may experience a loss in quality due to the JPEG encoding. The library does not support much exif information, so if you add exif information that controls the brightness of the image, it may be removed.
Forum: Plugins
In reply to: [Add Watermarks] New Uploaded Pics are not show anymore WP4.5Hi,
The main problem is that the plugin does not find the correct
attachmentfile
. This needs to be the original file name.The main line is this regexp:
=^(.*/)((?<name>[^/]+?)(-(?<x>\d+)x(?<y>\d+))?(?<ext>.\w+))$=
Replace it with:
=^(.*/)((?<name>[^/]+?)(-(?<x>\d+)x(?<y>\d+)(@\dx)?)?(?<ext>.\w+))$=
You can test it here:
https://www.functions-online.com/preg_match.html
(use the full file path as pattern)Does it work now?
Forum: Plugins
In reply to: [Add Watermarks] New Uploaded Pics are not show anymore WP4.5No, I was not. I do not have any sites using the avada theme.
Forum: Plugins
In reply to: [Add Watermarks] watermark got watermarkedWhat are the full paths you want to exclude?
This one should work:
^(wpcf7.*|.*WM-e1461617855105.png|.*nycspotnewsphotoLogo11.png)
Forum: Plugins
In reply to: [Add Watermarks] got this warning when activating at top of plugin pageHello,
You should only see this message once. Simply ignore it.
Forum: Plugins
In reply to: [Add Watermarks] New Uploaded Pics are not show anymore WP4.5Which plugin is generating those images?
WordPress stores a list of thumbnails for images. Those images do not seem to be in that list the normal way. This is why the watermark plugin cannot find out what to do with them (watermark or not)
Forum: Plugins
In reply to: [Add Watermarks] New Uploaded Pics are not show anymore WP4.5Hi,
My sites are running WordPress 4.5 for some time now, no compatibility issues.
Do you have more diagnostic information? Any error message or any plugin that might be conflicting?
Forum: Plugins
In reply to: [Add Watermarks] New Uploaded Pics are not show anymore WP4.5I have not tested WordPress 4.5 yet. My sites are still waiting a bit with the update.
When I do (probrably next week), I’ll update the plugin.
Forum: Plugins
In reply to: [Add Watermarks] Fit Image IncorrectlyHi,
By setting a min height/width you force the plugin to increase the watermark size to at least 10%.
Try setting width min and height min to 1px. It will then be able to use your desired width/height everywhere.
Forum: Plugins
In reply to: [Add Watermarks] Facebook Shared Photo & Small WatermarkFacebook is fetching the biggest image you have available and then scaling that back by itself.
This is why the watermark is so small.
Forum: Plugins
In reply to: [Add Watermarks] Exclude ThumbnailsHi,
I’ll keep it in mind for the next version.
If you need a quick fix, search for shouldAddWatermark(). Return false whenever you do not want to watermark that image. You can access $this->attachment there. If you set debug to true, you see all the fields in there.
The result of this method is cached later, don’t worry about performance there.
Forum: Plugins
In reply to: [Add Watermarks] Watermarks not changingHi,
This plugin requires Apache+mod_rewrite in a basic setup.
If your image cache/CDN is holding old versions of the image, talk to that cache operator on how to flush the cache manually. This is only required after changing watermark preferences (e.g. enabling/disabling it, changing the position, …). The plugin cannot detect that and there are plenty of cache types. Facebook and your browser may also cache old versions of the image.
The plugin will respond with a 304 Not Modified correctly if you use the default apache setup and has it’s own cache to make things as fast as accessing a normal file.
Forum: Reviews
In reply to: [Add Watermarks] Breaks link to all images on websiteYou need to put the file path in a web browser. Like: https://<your-url>/phpinfo.php
Forum: Plugins
In reply to: [Add Watermarks] Can't delete watermarks from my siteHo did you “delete” the plugin? Did you use the normal uninstall or simply delete the plugin file?