PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 2.6.0
ShopBuilder – WooCommerce Builder For Elementor v2.6.0
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
← All changes | app/Abstracts/ElementorWidgetBase.php +11 -1 2.2.02.6.0 View file →
@@ -388,8 +388,9 @@
388 388 if ( ! $this->is_edit_mode() ) {
389 389 return;
390 390 }
391 391 $ajaxurl = admin_url( 'admin-ajax.php' );
392 +
392 393 if ( in_array( 'sitepress-multilingual-cms/sitepress.php', get_option( 'active_plugins' ) ) ) {
393 394 $ajaxurl = admin_url( 'admin-ajax.php?lang=' . ICL_LANGUAGE_CODE );
394 395 }
395 396 ?>
@@ -405,9 +406,18 @@
405 406 setTimeout(function() {
406 407 rtsbProductPageInit();
407 408 }, 1000);
408 409 <?php if ( rtsb()->has_pro() ) { ?>
409 - rtsbFilters();
410 + var isMasonry = jQuery('.rtsb-elementor-container .rtsb-masonry');
411 +
412 + if(isMasonry.length > 0) {
413 + isMasonry.masonry();
414 + }
415 +
416 + if (typeof rtsbFilters === 'function') {
417 + rtsbFilters();
418 + }
419 +
410 420 setTimeout( function (){
411 421 window.rtsbCountdownApply();
412 422 }, 1000 );
413 423 <?php } ?>