trmkr
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] “Make known users anonymous” settingHi Bruce,
Thank you for your reply. I had to enable “Enable caching for all visitors.” to make “Make known users anonymous so they’re served supercached static files.” option work.
Thank you
Best regardsForum: Themes and Templates
In reply to: [Blocksy] woocommerce zoom image sizeHello Eduard,
Thank you very much for your detailed explanation. The flow is much clearer now.
I think, the best way to reduce asset size is to use webp.
Best regards
Forum: Themes and Templates
In reply to: [Blocksy] woocommerce zoom image sizeHello Eduard,
Thank you for your reply. I reanalyzed my problem and discovered that it is not related to the zoom effect. Since my original images are ~1.6mb, I want to disable unnecessary downloading of full images as my original images are ~1.6MB each. I want to manage this with theme settings and without using image compression plugins.
Best regards
- This reply was modified 2 years, 7 months ago by trmkr.
Forum: Themes and Templates
In reply to: [Blocksy] woocommerce zoom image sizeHello Eduard,
I already updated Customiser -> Single Product -> Gallery Options -> Image Size section as 1024px. However, zoom effect requires the original image size that I uploaded to media library.
Best regards
Forum: Themes and Templates
In reply to: [Blocksy] woocommerce zoom image sizeHi Eduard,
Thank you for your reply. Yes, I mean hover effect for zoom. Since the original product image has bigger file size (1200px), I want to use a smaller one for zoom (1024px). I added below filter in my previous theme to set thumbnail size for zoom effect. Can I use it for Blocksy too?
add_filter( 'woocommerce_gallery_full_size', function( $size ) { return 'woocommerce_single'; } );
Best regards
- This reply was modified 2 years, 7 months ago by trmkr.
Forum: Fixing WordPress
In reply to: CLS issue with should_load_separate_core_block_assetsHi Jacob,
Thank you for this clear explanation.
Regards
Forum: Plugins
In reply to: [WC Fields Factory] Assign images to product fieldsHi Saravana,
Is there any update on this issue with the latest version?
Regards
Thank you ??
I couldn’t configure it. Is there any demo?
Regards
Forum: Plugins
In reply to: [WebP Express] Bulk convertI added this line to the end of the getListRecursively function in lib/classes/BulkConvert.php. It worked ??
$results = array_reverse($results);
Forum: Plugins
In reply to: [Converter for Media - Optimize images | Convert WebP & AVIF] Webp conversionThank you!
I hope there will be an option in the future.
Best regards
Forum: Plugins
In reply to: [Converter for Media - Optimize images | Convert WebP & AVIF] Webp conversionHi Mateusz,
I have a WoocCommerce store with 3K products each having 4 images. However, only ~500 of them are active at the moment. Therefore, I don’t want convert all my media gallery as webp.
Best Regards
Hi,
I tried your suggestion but it didn’t work. However, it’s a great plugin!
Thank you.
Forum: Plugins
In reply to: [WebP Express] Slow webp conversionThank you ??
Thank you!
I used image block and it’s now working.
- This reply was modified 2 years, 10 months ago by trmkr.
Forum: Plugins
In reply to: [LiteSpeed Cache] Woocommerce product update intervalI modified the code below. It works ??
add_action('woocommerce_update_product', 'lscwp_purge_product_update', 10, 2); function lscwp_purge_product_update($product_id, $product) { if (defined('LSCWP_V')){ do_action( 'litespeed_purge_post', $product_id ); } $lscwp_categories = get_the_terms($product_id, 'product_cat'); if( $lscwp_categories ){ foreach($lscwp_categories as $lscwp_c){ if (defined('LSCWP_V')) { do_action( 'litespeed_purge_url', get_category_link( $lscwp_c ->term_id ) ); } } } }