PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Avada Theme Compatibility

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Hello, i am using AVADA to create my website.
I want to link the results of the filters to my Post Card Element (which displays the products).
Is that possible? And if yes, how can i implement it?
Thanks in advance!

Hello

Please read this - https://products-filter.com/make-page-builders-and-custom-template-filterable

Alright, i did this . But how can i connect a specific Avada Element to get filtered by Husky ?

This code intercepts all database queries to retrieve products and adds filter conditions. So all templates that display products should display the filtered result

If this doesn't work for you - then you need to customize the template code

Yeah it does this but it redirects me to a new page with the filtered products displayed.
My question is how i can set it to not redirect me to a new page, instead when i choose a filter category to rerender the Post Card that i want with the filter results?

I noticed the redirection happens to the follow URLs  https://my-site.gr/shop-full-width/swoof/product-category/
Where :
product-category = the selected category
my-site.gr = domain name
shop-full-width = default shop page of my site.

Is there a setting to change this and instead to rerender the Post Card Element i have in the same page as the HUSKY Widget?

 

Hello

Please drop me exact link to the issue

https://neoncloud.gr/women/

Here you can see the Husky Component at the left, and also the Post Card Avada Element on the right which i want to link with the filters.
It isn`t a bug or something , i just want to link the filter results to happen in my Post Card Element and i dont know how. :)

Try  to add in JS  file  this code:

var woof_not_redirect = 1;

I think you better insert this line at the beginning of your child theme's JS file

In which file?

Hello

Any JS file that is included in your child theme

Quote from nikosandreadis19a on November 8, 2024, 14:18

In which file?

Hello, you can also add js code using hook wp_footer. Open file functions.php of your current wp theme and place there next code:

function my_script() { ?>
    <script>
        var woof_not_redirect = 1;
    </script><?php
}
add_action( 'wp_footer', 'my_script' );