JayFry
Forum Replies Created
-
Any news on this topic?
Forum: Plugins
In reply to: [YML for Yandex Market] Оптимизация плагинаСпасибо за обратную связь!
Forum: Plugins
In reply to: [Market Exporter] Генерация нескольких фидовПодскажите, а что значит по умолчанию? Такая возможность есть в премиум версии?
Forum: Plugins
In reply to: [Redis Object Cache] Time metricsThanks for reply!
Yeah, TTFB is under 500 ms but not too much.Here you are.
BEAR – Bulk Editor and Products Manager Professional for WooCommerce Better Search Replace Content Aware Sidebars Converter for Media Enable Media Replace FileBird Pro Fluent Forms Fluent Forms Pro Add On Pack GenerateBlocks GP Premium Index WP MySQL For Speed Inpsyde Translation Cache Login No Captcha reCAPTCHA (Google) Max Mega Menu Max Mega Menu - Pro Addon Members Preserve Page and Taxonomy Hierarchy on Edit Menus Screen Product Feed PRO for WooCommerce Redis Object Cache Regenerate Thumbnails Rewrite Rules Inspector Search & Replace Slim Maintenance Mode Smart Slider 3 Pro Stackable - Gutenberg Blocks (Premium) Url Rewrite Analyzer WooCommerce WooCommerce Advanced Bulk Edit WooCommerce AJAX Products Filter WordPress Importer WP All Export - WooCommerce Export Add-On Pro WP All Export Pro WP All Import - WooCommerce Import Add-On Pro WP All Import Pro WP Mail SMTP Yoast SEO
I have exactly the same error after update.
- This reply was modified 1 year, 10 months ago by JayFry.
Forum: Plugins
In reply to: [Simple Image Sizes] Cant change image size for regenerationYep, you`re right this is working solution. But unfortunately it denies the main usability purpose of this plugin ??
Forum: Plugins
In reply to: [Simple Image Sizes] Cant change image size for regenerationSame problem. Plugin don`t change new woocommerce image sizes after it updated to version 3.3.
You could read about what they`ve done here https://woocommerce.wordpress.com/2017/12/11/wc-3-3-image-size-improvements/Forum: Plugins
In reply to: [WooCommerce] Up-sells orderYou was totally right. Your code is working. The problem was in my functions.php, it had some code that was contradicting with yours.
Thank you a lot!Forum: Plugins
In reply to: [WooCommerce] Up-sells orderForum: Plugins
In reply to: [WooCommerce] Up-sells orderThank you for answer, but your solution worked in older versions of woocommerce. Now it is not, I have just tested it.
- This reply was modified 7 years, 4 months ago by JayFry.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Layered NavI`ve found solution to my problem. To achieve single select you should edit code line 414 in the file class-wc-widget-layered-nav.php (located in woocommerce folder)
changeif ( ! in_array( $term->slug, $current_filter ) ) { $current_filter[] = $term->slug; }
to
if ( ! in_array( $term->slug, $current_filter ) ) { $current_filter[0] = $term->slug; }
Or just create your own custom widget on the base of existing woocommerce widget.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Layered NavI`ve just translated all attribute names to latin characters and It have worked as you said it should! So the problem was definitely UTF8 chars.
But is there a trick to make this widget work with “OR” attribute as I described above? Maybe edit some lines in widget code? (Not to add attribute to previous ones, but deselect first and select second. I don`t want to use “AND” cause if you select one it only shows selected and not others available).
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Layered NavNo, I have already excepted this option.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Layered NavI thought so too! But in my demo here also with “OR” it deselects!
Why these behaviors do not coincide?