Title: passij's Replies | WordPress.org

---

# passij

  [  ](https://wordpress.org/support/users/passij/)

 *   [Profile](https://wordpress.org/support/users/passij/)
 *   [Topics Started](https://wordpress.org/support/users/passij/topics/)
 *   [Replies Created](https://wordpress.org/support/users/passij/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/passij/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/passij/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/passij/engagements/)
 *   [Favorites](https://wordpress.org/support/users/passij/favorites/)

 Search replies:

## Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Matomo Analytics - Powerful, Privacy-First Insights for WordPress] No statistics showing up](https://wordpress.org/support/topic/no-statistics-showing-up/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/no-statistics-showing-up/#post-16945563)
 * [@emermatomo](https://wordpress.org/support/users/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 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Matomo Analytics - Powerful, Privacy-First Insights for WordPress] No statistics showing up](https://wordpress.org/support/topic/no-statistics-showing-up/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/no-statistics-showing-up/#post-16941754)
 * Thanks [@emermatomo](https://wordpress.org/support/users/emermatomo/)! Interesting!
   In your provided Link I can‘t find any hints on fixing this 404 error!? Can you
   help again? Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Matomo Analytics - Powerful, Privacy-First Insights for WordPress] No statistics showing up](https://wordpress.org/support/topic/no-statistics-showing-up/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/no-statistics-showing-up/#post-16934495)
 * Thanks [@emermatomo](https://wordpress.org/support/users/emermatomo/)!
 * This is the output of the debug.log
 * `[31-Jul-2023 07:45:52 UTC] Matomo: Scheduled tasks archive data`
 * This is the URL: [https://alpenluxus.com](https://alpenluxus.com)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Matomo Analytics - Powerful, Privacy-First Insights for WordPress] DB overload and crashing my site](https://wordpress.org/support/topic/db-overload-and-crashing-my-site/)
 *  [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/db-overload-and-crashing-my-site/#post-16593673)
 * Thanks [@kornikaned](https://wordpress.org/support/users/kornikaned/), it worked!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Matomo Analytics - Powerful, Privacy-First Insights for WordPress] DB overload and crashing my site](https://wordpress.org/support/topic/db-overload-and-crashing-my-site/)
 *  [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/db-overload-and-crashing-my-site/#post-16593160)
 * 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](https://wordpress.org/support/users/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, 5 months ago by [passij](https://wordpress.org/support/users/passij/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vilva] Responsive featured images](https://wordpress.org/support/topic/responsive-featured-images/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/responsive-featured-images/#post-14194080)
 * Great!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vilva] Responsive featured images](https://wordpress.org/support/topic/responsive-featured-images/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/responsive-featured-images/#post-14186382)
 * Hi [@blossomthemessupport](https://wordpress.org/support/users/blossomthemessupport/),
 * thanks 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](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](https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Responsive_images)
 * Thank you!
    Pascal
    -  This reply was modified 5 years, 5 months ago by [passij](https://wordpress.org/support/users/passij/).
    -  This reply was modified 5 years, 5 months ago by [passij](https://wordpress.org/support/users/passij/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Crelly Slider] Resolution switching](https://wordpress.org/support/topic/resolution-switching/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/resolution-switching/#post-9700916)
 * Thanks for your answer!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RICG Responsive Images] Safari loads biggest available size](https://wordpress.org/support/topic/safari-loads-biggest-available-size/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/safari-loads-biggest-available-size/#post-5959055)
 * Thanks for your feedback! I’ll watch the conversation on Github.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RICG Responsive Images] Safari loads biggest available size](https://wordpress.org/support/topic/safari-loads-biggest-available-size/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/safari-loads-biggest-available-size/#post-5959046)
 * So 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](https://github.com/scottjehl/picturefill/issues/338)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RICG Responsive Images] Safari loads biggest available size](https://wordpress.org/support/topic/safari-loads-biggest-available-size/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/safari-loads-biggest-available-size/#post-5958919)
 * I’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](http://www.filamentgroup.com/lab/to-picturefill.html)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RICG Responsive Images] Safari loads biggest available size](https://wordpress.org/support/topic/safari-loads-biggest-available-size/)
 *  Thread Starter [passij](https://wordpress.org/support/users/passij/)
 * (@passij)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/safari-loads-biggest-available-size/#post-5958916)
 * Actually I do not lazy load. I am wondering on the empty srcset and style tag.
 * Thanks!

Viewing 12 replies - 1 through 12 (of 12 total)