passij
Forum Replies Created
-
@emermatomo, thanks again for the 404 hint! I enabled and disabled a few setting in the Matomo wordpress settings, I also enabled shortly the tracking-debug-mode and out of a sudden, the 404 is gone and tracking seems to work. I don’t know what happend, but no matter π
Thanks @emermatomo! Interesting! In your provided Link I canβt find any hints on fixing this 404 error!? Can you help again? Thanks!
Thanks @emermatomo!
This is the output of the debug.log
[31-Jul-2023 07:45:52 UTC] Matomo: Scheduled tasks archive dataThis is the URL: https://alpenluxus.com
Thanks @kornikaned, it worked!
Same here … once you try to click on any of the Matomo links, the website crashes.
Any adivce to fix this? Thanks a lot!
@kornikaned I also cannot downgrade (dunno why, but I get errors when I try to manually upload old versions of the plugin (files not found)). Any advice how to downgrade? Thanks!
- This reply was modified 3 years, 2 months ago by passij.
Forum: Themes and Templates
In reply to: [Vilva] Responsive featured imagesGreat!
Forum: Themes and Templates
In reply to: [Vilva] Responsive featured imagesthanks for your answer! It’s correct, the featured image is responsive in terms of scaling. But it does not load different sizes of images per viewport. You can achieve that with the srcset/sizes attribute.
You can check your own demo theme: https://blossomthemes.com/theme-demo/?theme=vilva
If you check the source code for the featured image, you will see just an ordinary img tag:
<img src="https://blossomthemesdemo.jpg" alt="" width="900" height="500" />Compare it with an img tag within a post and you will find the srcset attribute. The browser then decides which image to load, dependent from the viewport of the browser. This is a reduced example:
<img srcset="elva-fairy-480w.jpg 480w, elva-fairy-800w.jpg 800w" sizes="(max-width: 600px) 480px, 800px" src="elva-fairy-800w.jpg" alt="" />https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Responsive_images
Thank you!
PascalForum: Plugins
In reply to: [Crelly Slider] Resolution switchingThanks for your answer!
Forum: Plugins
In reply to: [RICG Responsive Images] Safari loads biggest available sizeThanks for your feedback! I’ll watch the conversation on Github.
Forum: Plugins
In reply to: [RICG Responsive Images] Safari loads biggest available sizeSo i manually deleted the src attribute (as described in the article) for testing purposes: works in safari! Only the appropriate image will be loaded.
Is there a chance for integrating this in the plugin? Because manually changing the output is not really an option. For sure it needs additional testing.
I think the issue has something to do with a bug in safari: https://github.com/scottjehl/picturefill/issues/338
Forum: Plugins
In reply to: [RICG Responsive Images] Safari loads biggest available sizeI’ve figured out the same problem at the official picturefill demo sites.
Possible solution: As Safari doesn’t fully support the srcset Attribute yet, it falls back to src. So Safari always downloads the “fallback” version (in this case the full resolution image) and the appropriate image.
Any feedback is welcome!
Also I suggest to omit the fallback src attribute, as described by scott jehl http://www.filamentgroup.com/lab/to-picturefill.html
Forum: Plugins
In reply to: [RICG Responsive Images] Safari loads biggest available sizeActually I do not lazy load. I am wondering on the empty srcset and style tag.
Thanks!