paradigmatools
Forum Replies Created
-
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Breaks product carouselGreat!
Thank you!
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Breaks product carouselHello
Can you drop me exact link to the issue? I will check it
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Toggle not working after updatewelcome;)
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Toggle not working after updateHello Wil
Thank you for info! Fixed!
please update the plugin clear all cache and do a test
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Modal Popup not openingWelcome;)
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Modal Popup not openingHello
The problem is the incompatibility of this functionality (modal) with ajax mode.
Why is this happening: Third party plugin uses JS for modal window functionality. After the page is loaded, this JS is initialized for all buttons. But when the filter redraws products in ajax mode, the page doesn’t reload (that’s the point of ajax ) and this JS is not initialized for new product buttons
There are two solutions:
1) Disable ajax mode
2) In third party plugin support ask JS initialization function for buttons and paste it here – https://share.stackovergo.com/image/i20220818113541.png
Hello
Ok! Great
Hello
In the free version, all unavailable options are highlighted in red
More details here – https://avalon23.dev/downloads/
Hello
1) in this case you need code customization
An example:document.addEventListener('avalon23-filter-is-drawn', function (e) { if (e.detail.filter_option.filter_id != 1){ return true; } let last = e.detail.filter_elements.querySelector('.avalon23-filter-cell-make ul li select[data-level="0"]'); let btn = e.detail.filter_elements.querySelector('.avalon23-filter-filter.avalon23-btn'); if (last == null) { btn.style.display = "inline"; } else { btn.style.display = "none"; } return true; });
You can drop me exact link to the page with filter and I will develop the code for your case
2) Yes it is possible. In the widget settings – https://share.stackovergo.com/image/i20220514115016.png
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Vendor filterHello
yes! please read this – https://avalon23.dev/document/author/
Because the vendor is the author of the product
In the settings of this filter, you can select the required user roles
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Hierarchy dropdown on categoriesGreat!
Welcome;)
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Hierarchy dropdown on categoriesHello
Oh yes! It’s my fault. This will only work with this setup – https://share.stackovergo.com/image/i20220222095619.png – But unfortunately this option is not available in the free version.
Let’s try another solution
In file -\wp-content\plugins\avalon23-products-filter\classes\filter.php – please add this code – https://share.stackovergo.com/image/i20220222102924.png
$all_terms_ids = []; foreach ($terms as $t) { if (is_object($t)) { $all_terms_ids[] = $t->term_id; } }
and change this code – https://share.stackovergo.com/image/i20220222103050.png
'parent' => in_array($t->parent,$all_terms_ids)? $t->parent: 0,
These changes will be included in the new version of the plugin.
AND add in functions.php:
add_filter('avalon23_taxonomy_arg', function( $tax_args ) { if (isset($tax_args['taxonomy']) && 'product_cat' == $tax_args['taxonomy']) { $tax_args['child_of'] = '279';//id of your term } return $tax_args; });
- This reply was modified 2 years, 9 months ago by paradigmatools.
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Hierarchy dropdown on categoriesOk! Please try to use Predefinition tab – https://avalon23.dev/document/predefinition/
Use the data for the category: Ganci traino UR
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Hierarchy dropdown on categoriesHello
Can you drop me exact link to the issue?
On the taxonomy page, the current term is automatically selected in the hierarchical dropdown – https://c2n.me/4f0F4JK
Maybe I didn’t understand your problem.
Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Add class=”notranslate” to filtersHello Wil
Welcome;)