fbpx
Want To Add Extra Images Per Product Variation For Free? Download Now

Elementor Loop Grid

Hi, I have build a Product Archive with Elementor Loop Grid and I do not know how to show the Variation Colors under the Title. Is that possible?

Hakik Zaman

Hi Dimitris,

Thanks for reaching out to us. Did you try our shortcode: [wvs_show_archive_variation]?

Keep the shortcode in your Loop Grid product card.

Thank You

Hakik Zaman

Hi Dimitris,

We need an event from your filter plugin that should be triggered after new products are loaded.

Just send this plugin to your plugin developer: https://wordpress.org/plugins/malinky-ajax-pagination/

Ask them to send triggers like the following as the Malinky Ajax Pagination plugin provides.

document.addEventListener(‘malinkyLoadPostsComplete’, function(e) {
console.log(‘LoadPostsComplete’);
});

Like this filter plugin provided: https://woocommerce.com/products/product-filters/

jQuery(document).ready(function( $ ){
// Your code in here
jQuery(window).on(‘wcpf_update_products’, function () {
console.log(‘Hi’);
});
});

Thank You