| @@ -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,17 @@ | ||
| 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 | + } | |
| 410 | 419 | setTimeout( function (){ |
| 411 | 420 | window.rtsbCountdownApply(); |
| 412 | 421 | }, 1000 ); |
| 413 | 422 | <?php } ?> |