| @@ -365,9 +365,9 @@ | ||
| 365 | 365 | var cartButton = cartWrpper.find( |
| 366 | 366 | '.product_type_grouped, .add_to_cart_button, .single_add_to_cart_button ' |
| 367 | 367 | ); |
| 368 | 368 | if (cartIcon) { |
| 369 | - console.log( cartButton.find('svg') ) | |
| 369 | + //console.log( cartButton.find('svg') ) | |
| 370 | 370 | cartButton.find('i').remove(); |
| 371 | 371 | cartButton.find('svg').remove(); |
| 372 | 372 | cartButton.find('img').remove(); |
| 373 | 373 | cartButton.prepend(cartIcon); |
| @@ -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 } ?> |