gepetobio
Forum Replies Created
-
Forum: Plugins
In reply to: [wp-webp Plugin] Not working in mozila and safari@diegpl yes, you are right, I realised that after I replied… and it was silly of me to not read the documentation properly :facepalm: but to be honest, it didn’t work for me as well. I was on a deadline and had to drop this but it would be interesting to see if this plugin works as we expect…
Forum: Plugins
In reply to: [wp-webp Plugin] Not working in mozila and safariHi @lakhankaushal,
This is not really a plugin problem, but a limitation of webp images. At this point, Chrome and Opera are the only major browsers that support these kind of images. You can check the support of webp images on: https://caniuse.com/#search=webp
Forum: Plugins
In reply to: [Infinite-Scroll] Infinite Scroll with Custom Post TypesI had the same problem of having it working on the blog list but not in a page displaying only one category of posts (not the /category/category-name, one that I created with a <?php query_posts( ‘cat=4’ ); ?> query). But this latest function fixed the problem:
function my_load_infinite_scroll( $load_infinite_scroll ) { if( is_page('my-page-name') ) return true; return $load_infinite_scroll; } add_filter('infinite_scroll_load_override', 'my_load_infinite_scroll');