niklo
Forum Replies Created
-
Perfect! Would be great if you can ping me here when the patch is available.
Jumping in here, as I provided a list by email. I do note a similar feature that we have in use through the plugin Perfmatters that we use. It’s called instant page that preloads the next page (https://perfmatters.io/docs/link-prefetch/) when hovering on a link.
Hi,
Sorry to jump on another ones thread, but we are seeing this same issue on Kinsta, with only proprietary Kinsta cache activated. Almost all posts are without the OG meta -bit, unless we manually flush the page / object cache after we initially published the piece. And we see this happening on 3 different wp installs (pretty similar though, all on kinsta).
Forum: Plugins
In reply to: [reGenerate Thumbnails Advanced] More ReGenerate Periods pleaseThis would be very valuable for us as well, any update on ETA?
They have promised an update to this a few times, but seems that nothing will change. We’re about to abandon too for all the same reasons.
Hi,
Same issue here. If this isn’t fixed soon, we’ll have to part ways and subscribe to some other optimization plugin. The quality of the images are horrendous. Can’t understand why the option to chose optimization level has been removed.
Forum: Plugins
In reply to: [WordPress Popular Posts] Update of plugin adds 30+ javascripts to pageHi Hector! This baffled me also, I was really suprised seeing 30 scripts loading without any change (except plugin updates) on the page.
I really appreciate the plugin and the work you do, but I have to ask if you’re able to give a timeline on when this should be updated the proper way, via a plugin update? We’re using this on 10+ sites and hotfixing plugins isn’t something I’m really comfortable with.
Again, thank you for the great plugin, hopefully you’ll find a way to fix this soon.
Forum: Plugins
In reply to: [W3 Total Cache] Disappearing featured image selectionGood to know that you got it fixed!
Forum: Plugins
In reply to: [W3 Total Cache] Disappearing featured image selectionI’m using bones too, with the same filestructure, so this should be a solution for you too.
<?php require_once('library/bones.php'); require_once('library/custom-post-type.php'); require_once('library/admin.php'); if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size(90, 90, true); add_image_size( 'suuri_vaaka_sixteen_col', 1000, 9999, false ); //300 pixels wide (and unlimited height) add_image_size( 'pieni_vaaka_sixteen_col', 622, 9999, false ); //300 pixels wide (and unlimited height) add_image_size( 'pieni_vaaka_three_col', 181, 120, true ); //300 pixels wide (and unlimited height) add_image_size( 'pieni_vaaka_two_col', 118, 9999, false ); //300 pixels wide (and unlimited height) add_image_size( 'pieni_vaaka_two_col_pysty', 118, 168, true ); //300 pixels wide (and unlimited height) add_image_size( 'pieni_vaaka_mini', 55, 35, true ); //300 pixels wide (and unlimited height) add_image_size( 'pieni_vaaka_mini_pysty', 55, 80, true ); //300 pixels wide (and unlimited height) // additional image sizes // delete the next line if you do not need additional image sizes add_image_size( 'category-thumb', 300, 9999 ); //300 pixels wide (and unlimited height) } ?>
My exact code (that works) is above. Please try it, to see if it works for you!
Forum: Plugins
In reply to: [W3 Total Cache] Disappearing featured image selectionOkay, I found a solution to this. My theme has a setup where i include a file that contains the featured post – snippet.
This was in my functions.php:
require_once('library/featured_post_snippet.php');
The featured_post_snippet.php contained this:
if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size(90, 90, true); add_image_size( 'some_size', 1000, 9999, false ); //300 pixels wide (and unlimited height) }
The setup above broke my featured posts when I activated w3 total cache.
When I moved the exactly same code straight to the functions.php, everything works okay again. Hope this helps, seems like a minor bug in w3 total cache.
Forum: Plugins
In reply to: [W3 Total Cache] Disappearing featured image selectionSame here. Everything works until I activate the w3 total cache.
Forum: Plugins
In reply to: Same query multiple times in a templateAnyone?