updateproductlist event prestasop

if(typeof prestashop !== 'undefined') {
   prestashop.on('updateProductList', (data) => {

                    
                       updateProductListDOM(data);
//other action
                    
                      });


            }

function updateProductListDOM (data) {
  $('#search_filters').replaceWith(data.rendered_facets);
  $('#js-active-search-filters').replaceWith(data.rendered_active_filters);
  $('#js-product-list-top').replaceWith(data.rendered_products_top);
  $('#js-product-list').replaceWith(data.rendered_products);
  $('#js-product-list-bottom').replaceWith(data.rendered_products_bottom);
}
 

Comments

Popular Posts