I’ve enabled 10WebBooster. I optimized the above page.
But when I check manually in PageSpeed Insights I get low score.
I’m also having Ezoic enabled for monetization and caching.
I also have Cloudflare enabled.
I disabled Ezoic cloud caching and enabled it, both didnt produce good results.
Is there any conflict with Ezoic and 10WebBooster.
Please suggest remedies for this kind of articles.
]]>I’m using ACF for a comparison website. On the end of each text I would like to put a text with shortcodes which pull and print values.
E.g.: The Mercedes-Benz models on this page cost between [field price] (highest price) and [field price] (lowest price) Euro.
Is there a possibility to output the highest and lowest price via the shortcodes? What do I have to add for this?
Kind regards!
]]>For example there are 5 rings left that is why the product is not showing low in stock (I set low stock notifications at 2 pcs)
But there is only 1 size 16 left. So when the customer clicks on the size 16 it’s nice if it shows: only 1 left in stock. To push sales
Is this possible? Or do I need a plug-in?
Thanks so much in advance
]]>I set that by default, all products are sorted by price – high to low.
I want to change that only for 1 category. We sell pools and pool equipment, so I want to change that everything within the Pools (Bazeni) category is sorted from low to high. I tried few codes that I found, but had no luck. Here’s an example:
add_filter('woocommerce_get_catalog_ordering_args', 'tk_woocommerce_catalog_orderby');
function tk_woocommerce_catalog_orderby( $args ) {
if( is_product_category( 'bazeni' ) ) {
$args['orderby'] = 'meta_value_num';
$args['order'] = 'DESC';
$args['meta_key'] = '_price';
}
return $args;
}
I tried changing the product category from ‘bazeni’ to a directory (subcategory) that has products inside of it, yet, still nothing changed.
Kind regards
]]>I noticed a bug with my store. If I sort the products from lowest to highest price, everything is displayed correctly.
However, if I sort from highest to lowerst, which is the default option, the Zen sauna is misplaced. It’s displaying the prices as 2.460€, 1.901€, 2.256€, 2.104€. I don’t know why this is happening.
I tried to go to Settings -> Status -> Tools -> Product lookup tables and regenerate them, but that did nothing. I also tried to paste the code bellow to functions.php, but that didn’t fix the issue either.
/**
* Customize ordering by price
*/
add_filter('woocommerce_get_catalog_ordering_args', function ($args) {
$orderby_value = isset($_GET['orderby']) ? wc_clean($_GET['orderby']) : apply_filters('woocommerce_default_catalog_orderby', get_option('woocommerce_default_catalog_orderby'));
if ('price' == $orderby_value) {
$args['orderby'] = 'meta_value_num';
$args['order'] = 'ASC';
$args['meta_key'] = '_price';
}
if ('price-desc' == $orderby_value) {
$args['orderby'] = 'meta_value_num';
$args['order'] = 'DESC';
$args['meta_key'] = '_price';
}
return $args;
});
Kind regards
]]>I have a little problem – I made custom single product pages, so I’m not using default WooCommerce interface. The problem with that is that products and products variations don’t display any “On sale” badges or anything when they are opened. So, what I’m thinking is that I could add a text or a shortcode that displays the badge that I want only when the product is for example on sale.
I tried a few plugins to add badges, but none of them work, since the single products are made the way they are.
What would be the best way to display On sale, Low stock, Not in stock badges?
Kind regards
]]>Please forgive me for posting so many issues in your forum (I’ve noticed the latest posts, almost all of them are mine..). In fact I really like your plugin and don’t mind contributing with my feedback
But this is a more pressing matter:
I noticed a lot of images were being displayed with their old versions AND with low resolution. I mean very low resolution.
Some images were fine, but others were showing up an older version, wich I haven’t seen in months. Wich is strange. I disabled the cache plugin, made no difference. I disabled WP Compress, and BAM! All the images are nice, sharp and they are the most up to date version.
Maybe this is a bug? I tried disabling and enabling some WP Compress options like Adaptive images, and also switching between Local and CDN modes, but they didn’t change much.
Right now, I can only display the images correctly with WP Compress disabled.
Please check this out.
Thanks!
]]>I’m using the Elementor Page Builder Image Widget for my images on my page (and across the site) The images are appearing in the page builder and it’s preview fine – great quality. But when i save and view the full site in another window / on another browser the quality degrades – The same issue seems to be occurring on every page asides the home page.
Is there a fix for this?
The images I am currently using are fairly large (We will be rescaling these at a later time for page loadtimes/performance) but I wouldn’t have thought that would have caused this? Has anyone got any ideas?
* Edit – Seems to only happen on images when in the Full Width scale – However images are more that 2000px wide so I wouldn’t have thought decreased quality would have been an issue here?
]]>For example: when i upload a 4339x6129px resolution image after the upload its only 1812x2560px resolution and when i’m attach this image to a post to a featured image the image will be more worse than 1812x2560px it is only 560×430 or 800×430 but some images will keep the original good quality even if the image is only 800×430 or 560×430, what’s wrong?
I was tried to add these codes seperately to functions.php but nothing changes:
add_filter(‘jpeg_quality’, function($arg){return 85;});
add_filter( ‘jpeg_quality’, create_function( ”, ‘return 80;’ ) );
And i disabled any kind of caching or CDN but nothing.
Thanks
]]>