PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 2.6.5
ShopBuilder – WooCommerce Builder For Elementor v2.6.5
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/Elementor/Helper/RenderHelpers.php +852 -11 2.1.122.6.5 View file →
@@ -8,10 +8,14 @@
8 8 */
9 9
10 10 namespace RadiusTheme\SB\Elementor\Helper;
11 11
12 +use Elementor\Plugin;
13 +use RadiusTheme\SB\Helpers\Cache;
14 +use RadiusTheme\SB\Helpers\Fns;
12 15 use RadiusTheme\SB\Helpers\BuilderFns;
13 -use RadiusTheme\SB\Helpers\Fns;
16 +use WC_Product_Query;
17 +use WP_Term;
14 18
15 19 // Do not allow directly accessing this file.
16 20 if ( ! defined( 'ABSPATH' ) ) {
17 21 exit( 'This script cannot be accessed directly.' );
@@ -21,8 +25,12 @@
21 25 * BuilderFns class
22 26 */
23 27 class RenderHelpers {
24 28 /**
29 + * @var array
30 + */
31 + private static $cache = [];
32 + /**
25 33 * Get data.
26 34 *
27 35 * @param array|string $haystack The array or string to search for the value.
28 36 * @param string $needle The key to look for in the array or the string itself.
@@ -83,8 +91,9 @@
83 91 'order' => self::get_data( $meta, 'posts_order', 'DESC' ),
84 92 'author_in' => self::get_data( $meta, 'filter_author', [] ),
85 93 'display_by' => self::get_data( $meta, 'products_filter', 'date' ),
86 94 'categories' => self::get_data( $meta, 'filter_categories', [] ),
95 + 'brands' => self::get_data( $meta, 'filter_brands', [] ),
87 96 'tags' => self::get_data( $meta, 'filter_tags', [] ),
88 97 'attributes' => self::get_data( $meta, 'filter_attributes', [] ),
89 98 'relation' => self::get_data( $meta, 'tax_relation', 'OR' ),
90 99 'category_source' => self::get_data( $meta, 'select_source', 'product_cat' ),
@@ -341,9 +350,16 @@
341 350
342 351 if ( ! empty( $settings['single_category'] ) ) {
343 352 $visibility[] = 'single-cat';
344 353 }
354 + if ( ! empty( $settings['show_brands'] ) ) {
355 + $visibility[] = 'brands';
356 + }
345 357
358 + if ( ! empty( $settings['single_brand'] ) ) {
359 + $visibility[] = 'single-brand';
360 + }
361 +
346 362 if ( ! empty( $settings['show_swatches'] ) ) {
347 363 $visibility[] = 'swatches';
348 364 }
349 365
@@ -409,13 +425,23 @@
409 425 * @return int
410 426 */
411 427 public static function default_columns( $layout ) {
412 428 switch ( $layout ) {
429 + case 'rtsb-post-grid-layout1':
430 + case 'rtsb-post-grid-layout2':
431 + case 'rtsb-post-grid-layout3':
432 + case 'rtsb-team-layout1':
433 + case 'rtsb-team-layout2':
434 + case 'rtsb-testimonial-layout2':
413 435 case 'grid-layout2':
414 436 case 'slider-layout2':
437 + case 'rtsb-coupon-layout1':
438 + case 'rtsb-coupon-layout2':
439 + case 'rtsb-coupon-layout3':
415 440 $columns = 3;
416 441 break;
417 -
442 + case 'rtsb-post-list-layout1':
443 + case 'rtsb-post-list-layout2':
418 444 case 'list-layout1':
419 445 case 'list-layout2':
420 446 case 'list-layout3':
421 447 case 'list-layout7':
@@ -421,9 +447,13 @@
421 447 case 'list-layout7':
422 448 case 'list-layout5':
423 449 $columns = 1;
424 450 break;
425 -
451 + case 'rtsb-team-layout4':
452 + case 'rtsb-testimonial-layout1':
453 + case 'rtsb-testimonial-layout3':
454 + case 'rtsb-testimonial-layout4':
455 + case 'rtsb-testimonial-layout5':
426 456 case 'list-layout4':
427 457 case 'list-layout6':
428 458 case 'slider-layout5':
429 459 case 'slider-layout8':
@@ -428,10 +458,12 @@
428 458 case 'slider-layout5':
429 459 case 'slider-layout8':
430 460 $columns = 2;
431 461 break;
432 -
462 + case 'rtsb-logo-layout1':
463 + case 'rtsb-logo-layout2':
433 464 case 'grid-layout6':
465 + case 'grid-layout9':
434 466 $columns = 5;
435 467 break;
436 468
437 469 case 'category-layout1':
@@ -472,9 +504,10 @@
472 504 public static function prepare_container_classes( $metas = [], $settings = [], $custom_class = '' ) {
473 505 $classes = 'rtsb-elementor-container products rtsb-pos-r ';
474 506 $classes .= $custom_class;
475 507
476 - $layout = $metas['layout'];
508 + $raw_layout = esc_html( $metas['layout'] );
509 + $layout = self::filter_layout( $raw_layout );
477 510 $is_cat = preg_match( '/category/', $layout );
478 511 $cart_txt_class = '';
479 512
480 513 $animation = $metas['hover_animation'];
@@ -502,8 +535,11 @@
502 535
503 536 if ( in_array( 'single-cat', $metas['visibility'], true ) ) {
504 537 $classes .= ' show-single-cat';
505 538 }
539 + if ( in_array( 'single-brand', $metas['visibility'], true ) ) {
540 + $classes .= ' show-single-brand';
541 + }
506 542
507 543 if ( ! $is_cat ) {
508 544 $action_btn_classes = [
509 545 'show_compare_text' => 'has-compare-text',
@@ -534,8 +570,51 @@
534 570 return apply_filters( 'rtsb/product/container/class', $classes, $settings );
535 571 }
536 572
537 573 /**
574 + * Function to filter and validate the layout against allowed patterns.
575 + *
576 + * @param string $layout The layout string to be filtered.
577 + * @param string $template The template to be checked.
578 + *
579 + * @return string
580 + */
581 + public static function filter_layout( $layout, $template = '' ) {
582 + $allowed_patterns = apply_filters( 'rtsb/elementor/custom_layout', [ 'grid', 'list', 'slider', 'category', 'toyup', 'zilly', 'rtsb' ] );
583 + $layout_part = explode( '-', $layout );
584 + $default = 'grid-layout1';
585 +
586 + if ( empty( $layout_part[0] ) ) {
587 + return $default;
588 + }
589 +
590 + if ( in_array( $layout_part[0], $allowed_patterns, true ) ) {
591 + return $layout;
592 + } else {
593 + if ( ! empty( $template ) ) {
594 + $grid = preg_match( '/grid/', $template );
595 + $list = preg_match( '/list/', $template );
596 + $slider = preg_match( '/slider/', $template );
597 + $category = preg_match( '/category/', $template );
598 +
599 + if ( $grid ) {
600 + return $default;
601 + } elseif ( $list ) {
602 + return 'list-layout1';
603 + } elseif ( $slider ) {
604 + return 'slider-layout1';
605 + } elseif ( $category ) {
606 + return 'category-layout1';
607 + } else {
608 + return $default;
609 + }
610 + } else {
611 + return $default;
612 + }
613 + }
614 + }
615 +
616 + /**
538 617 * Row classes
539 618 *
540 619 * @param array $settings Settings array.
541 620 *
@@ -545,9 +624,10 @@
545 624 $masonry_class = null;
546 625 $classes = 'rtsb-row rtsb-content-loader element-loading';
547 626 $loader_class = ' rtsb-pre-loader';
548 627
549 - $layout = $settings['layout'];
628 + $raw_layout = esc_html( $settings['layout'] );
629 + $layout = self::filter_layout( $raw_layout );
550 630 $grid_type = $settings['grid_type'];
551 631 $is_carousel = preg_match( '/slider/', $layout );
552 632
553 633 if ( preg_match( '/category/', $layout ) && ! empty( $settings['active_cat_slider'] ) ) {
@@ -553,23 +633,30 @@
553 633 if ( preg_match( '/category/', $layout ) && ! empty( $settings['active_cat_slider'] ) ) {
554 634 $classes .= ' rtsb-slider-layout';
555 635 }
556 636
557 - if ( 'even' === $grid_type ) {
558 - $masonry_class = ' rtsb-even';
637 + if ( 'equal' === $grid_type ) {
638 + $masonry_class = ' rtsb-equal';
559 639 } elseif ( 'masonry' === $grid_type ) {
560 640 $masonry_class = ' rtsb-masonry';
641 + } else {
642 + $masonry_class = ' rtsb-even';
561 643 }
562 644
563 645 if ( ! rtsb()->has_pro() || $is_carousel ) {
564 646 $masonry_class = ' rtsb-even';
565 647 }
648 +
566 649 if ( $is_carousel && ! empty( $settings['raw_settings']['always_show_nav'] ) ) {
567 650 $classes .= ' always-show-nav';
568 651 }
652 +
569 653 if ( ! empty( $settings['raw_settings']['inner_slider_always_show_nav'] ) ) {
570 654 $classes .= ' inner-slider-always-show-nav';
571 655 }
656 + if ( empty( $settings['raw_settings']['cols_mobile'] ) ) {
657 + $classes .= ' rtsb-mobile-flex-row';
658 + }
572 659
573 660 $classes .= ' rtsb-' . $layout . $masonry_class . $loader_class;
574 661
575 662 return apply_filters( 'rtsb/elementor/row/classes', $classes, $settings );
@@ -632,9 +719,9 @@
632 719 $d_col = 0 === $meta['d_cols'] ? self::default_columns( $meta['layout'] ) : $meta['d_cols'];
633 720 $t_col = 0 === $meta['t_cols'] ? 2 : $meta['t_cols'];
634 721 $m_col = 0 === $meta['m_cols'] ? 1 : $meta['m_cols'];
635 722
636 - if ( \Elementor\Plugin::$instance->breakpoints->has_custom_breakpoints() ) {
723 + if ( Plugin::$instance->breakpoints->has_custom_breakpoints() ) {
637 724 // Widescreen.
638 725 $w_col = self::get_data( $settings, 'cols_widescreen' );
639 726 $w_col = 0 === $w_col ? self::default_columns( $meta['layout'] ) : $w_col;
640 727 $w_group = self::get_data( $settings, 'cols_group_widescreen', 1 );
@@ -885,10 +972,11 @@
885 972 *
886 973 * @return void
887 974 */
888 975 public static function register_scripts( $scripts ) {
889 - $caro = false;
890 - $script = [];
976 + $caro = false;
977 + $masonry = false;
978 + $script = [];
891 979
892 980 $script[] = 'jquery';
893 981
894 982 foreach ( $scripts as $sc => $value ) {
@@ -895,8 +983,12 @@
895 983 if ( ! empty( $sc ) ) {
896 984 if ( 'isCarousel' === $sc ) {
897 985 $caro = $value;
898 986 }
987 +
988 + if ( 'isMasonry' === $sc ) {
989 + $masonry = $value;
990 + }
899 991 }
900 992 }
901 993
902 994 if ( count( $scripts ) ) {
@@ -906,8 +998,12 @@
906 998 if ( $caro ) {
907 999 $script[] = 'swiper';
908 1000 }
909 1001
1002 + if ( $masonry ) {
1003 + $script[] = 'masonry';
1004 + }
1005 +
910 1006 $script[] = 'rtsb-imagesloaded';
911 1007 $script[] = 'rtsb-public';
912 1008
913 1009 foreach ( $script as $sc ) {
@@ -952,6 +1048,751 @@
952 1048 $products_col = absint( get_option( 'woocommerce_catalog_columns', 4 ) );
953 1049 $products_per_page = apply_filters( 'rtsb/elementor/archive/products_per_page', $products_row * $products_col );
954 1050
955 1051 return ! empty( $products_per_page ) ? $products_per_page : 12;
1052 + }
1053 + /**
1054 + * Render Filters View.
1055 + *
1056 + * @param array $templates Template name.
1057 + * @param array $settings Control settings.
1058 + *
1059 + * @return string
1060 + */
1061 + public static function filters_view( $templates, $settings ) {
1062 + global $wp;
1063 + $filters = [];
1064 + $html = null;
1065 + $reset = ! empty( $settings['reset_btn'] );
1066 + $reset_mode = 'show' === $settings['reset_btn_behavior'] ? ' show-reset' : ' ondemand-reset';
1067 + $reset_text = ! empty( $settings['reset_btn_text'] ) ? $settings['reset_btn_text'] : esc_html__( 'Reset Filter', 'shopbuilder' );
1068 + $scroll_mode = ! empty( $settings['enable_scroll'] ) ? ' has-scroll' : ' no-scroll';
1069 + $scroll_height = ! empty( $settings['enable_scroll'] ) ? $settings['scroll_height']['size'] : 300;
1070 + $has_mobile_toggle = ! empty( $settings['filter_mobile_toggle'] );
1071 + $toggle_class = $has_mobile_toggle ? ' default-filter-has-toggle' : ' default-filter-no-toggle';
1072 + $mobile_toggle_text = ! empty( $settings['filter_mobile_toggle_text'] ) ? $settings['filter_mobile_toggle_text'] : esc_html__( 'Click to Filter', 'shopbuilder' );
1073 + $scroll_attr = '';
1074 +
1075 + if ( ! empty( $settings['enable_scroll'] ) ) {
1076 + $scroll_attr = ' style="--rtsb-filter-scroll-height: ' . absint( $scroll_height ) . 'px;"';
1077 + }
1078 +
1079 + foreach ( $settings['filter_types'] as $key => $item ) {
1080 + if ( ! defined( 'RTWPVS_PLUGIN_FILE' ) && in_array( $item['input_type_all'], [ 'color', 'button', 'image' ], true ) ) {
1081 + $item['input_type_all'] = 'checkbox';
1082 + }
1083 + $filters[] = [
1084 + 'filter_title' => $item['filter_title'],
1085 + 'filter_items' => $item['filter_items'],
1086 + 'filter_attr' => $item['filter_attr'],
1087 + 'input_type' => 'product_attr' === $item['filter_items'] ? $item['input_type_all'] : $item['input_type'],
1088 + ];
1089 +
1090 + if ( 'rating_filter' === $item['filter_items'] ) {
1091 + $filters[ $key ]['template'] = $templates['rating'];
1092 + } elseif ( 'price_filter' === $item['filter_items'] ) {
1093 +
1094 + $filters[ $key ]['input_type'] = 'slider';
1095 + $filters[ $key ]['template'] = $templates['price'];
1096 + } else {
1097 + $filters[ $key ]['template'] = 'product_attr' === $item['filter_items'] ? $templates[ $item['input_type_all'] ] : $templates[ $item['input_type'] ];
1098 + }
1099 + }
1100 +
1101 + if ( '' === get_option( 'permalink_structure' ) ) {
1102 + $form_action = remove_query_arg( [ 'page', 'paged', 'product-page' ], add_query_arg( $wp->query_string, '', home_url( $wp->request ) ) );
1103 + } else {
1104 + $form_action = preg_replace( '%\/page/[0-9]+%', '', home_url( trailingslashit( $wp->request ) ) );
1105 + }
1106 + $args = [
1107 + 'filters' => $filters,
1108 + 'scroll_mode' => $scroll_mode,
1109 + 'reset_mode' => $reset_mode,
1110 + 'reset' => $reset,
1111 + 'scroll_attr' => $scroll_attr,
1112 + 'toggle_class' => $toggle_class,
1113 + 'reset_text' => $reset_text,
1114 + 'settings' => $settings,
1115 + 'form_action' => $form_action,
1116 + ];
1117 +
1118 + $html .= '<div class="rtsb-default-archive-filters' . esc_attr( $toggle_class ) . '">';
1119 +
1120 + if ( $has_mobile_toggle ) {
1121 + $html .= '<div class="rtsb-filter-mobile-toggle">
1122 + <button class="product-filter-toggle">
1123 + <span class="icon"><i aria-hidden="true" class="toggle-icon rtsb-icon rtsb-icon-filter"></i></span>
1124 + <span class="text reset-text">' . esc_html( $mobile_toggle_text ) . '</span>
1125 + <span></span>
1126 + </button>
1127 + </div>';
1128 + }
1129 +
1130 + $html .= Fns::load_template( $templates['layout'], $args, true );
1131 + $html .= '</div>';
1132 + return $html;
1133 + }
1134 + /**
1135 + * Get taxonomy type.
1136 + *
1137 + * @param string $tax_type Taxonomy type.
1138 + * @param string $attr_type Attribute type.
1139 + *
1140 + * @return string
1141 + */
1142 + public static function get_product_filters_tax_type( $tax_type, $attr_type = '' ) {
1143 + if ( 'product_attr' !== $tax_type ) {
1144 + return $tax_type;
1145 + }
1146 +
1147 + if ( empty( $attr_type ) ) {
1148 + return $tax_type;
1149 + }
1150 +
1151 + return $attr_type;
1152 + }
1153 + /**
1154 + * Get attribute terms.
1155 + *
1156 + * @param string $tax Taxonomy type.
1157 + * @return int[]|string|string[]|\WP_Error|\WP_Term[]
1158 + */
1159 + public static function get_product_filters_attribute_terms( $tax ) {
1160 + $cache_key = 'get_default_filter_attribute_terms_' . $tax;
1161 + if ( isset( self::$cache[ $cache_key ] ) ) {
1162 + return self::$cache[ $cache_key ];
1163 + }
1164 +
1165 + $attributes = wc_get_attribute_taxonomies();
1166 + $att_name = str_replace( 'pa_', '', $tax );
1167 + $exist = array_search( $att_name, array_column( $attributes, 'attribute_name' ), true );
1168 + if ( false === $exist ) {
1169 + self::$cache[ $cache_key ] = [];
1170 + return self::$cache[ $cache_key ];
1171 + }
1172 + $attribute = $tax;
1173 +
1174 + if ( ! is_shop() && is_product_taxonomy() ) {
1175 + $term = get_queried_object();
1176 +
1177 + if ( ! $term instanceof WP_Term ) {
1178 + return [];
1179 + }
1180 +
1181 + $args = [
1182 + 'status' => 'publish',
1183 + 'limit' => -1,
1184 + 'return' => 'ids',
1185 + ];
1186 +
1187 + if ( 'product_cat' === $term->taxonomy ) {
1188 + $args['category'] = [ $term->slug ];
1189 + }
1190 +
1191 + if ( 'product_tag' === $term->taxonomy ) {
1192 + $args['tag'] = [ $term->slug ];
1193 + }
1194 +
1195 + if ( strpos( $term->taxonomy, 'pa_' ) !== false ) {
1196 + $args['tax_query'] = [ // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
1197 + [
1198 + 'taxonomy' => $term->taxonomy,
1199 + 'field' => 'term_id',
1200 + 'terms' => $term->term_id,
1201 + 'operator' => 'IN',
1202 + ],
1203 + ];
1204 + }
1205 +
1206 + $query = new WC_Product_Query( $args );
1207 + $products = $query->get_products();
1208 + $attr_terms = [];
1209 +
1210 + foreach ( $products as $product_id ) {
1211 + $product_attr = wp_get_post_terms( $product_id, $attribute );
1212 +
1213 + foreach ( $product_attr as $attr ) {
1214 + $attr_terms[] = $attr;
1215 + }
1216 + }
1217 + self::$cache[ $cache_key ] = self::filter_products_array_unique( $attr_terms );
1218 + return self::$cache[ $cache_key ];
1219 + } else {
1220 + self::$cache[ $cache_key ] = get_terms(
1221 + [
1222 + 'taxonomy' => $attribute,
1223 + 'hide_empty' => false,
1224 + ]
1225 + );
1226 + return self::$cache[ $cache_key ];
1227 + }
1228 + }
1229 + /**
1230 + * Remove duplicate values from an array.
1231 + *
1232 + * @param array $array The input array.
1233 + * @param bool $keep_key_assoc Whether to keep the key associations after removing duplicates.
1234 + * @return array The array with duplicates removed.
1235 + */
1236 + public static function filter_products_array_unique( $array, $keep_key_assoc = false ) {
1237 + $duplicate_keys = [];
1238 + $tmp = [];
1239 +
1240 + foreach ( $array as $key => $val ) {
1241 + // convert objects to arrays, in_array() does not support objects.
1242 + if ( is_object( $val ) ) {
1243 + $val = (array) $val;
1244 + }
1245 +
1246 + if ( ! in_array( $val, $tmp, true ) ) {
1247 + $tmp[] = $val;
1248 + } else {
1249 + $duplicate_keys[] = $key;
1250 + }
1251 + }
1252 +
1253 + foreach ( $duplicate_keys as $key ) {
1254 + unset( $array[ $key ] );
1255 + }
1256 +
1257 + return $keep_key_assoc ? $array : array_values( $array );
1258 + }
1259 + /**
1260 + * Retrieve product categories (including hierarchical support)
1261 + *
1262 + * @param string $taxonomy Taxonomy name.
1263 + * @return int[]|string|string[]|\WP_Error|\WP_Term[]
1264 + */
1265 + public static function get_products( $taxonomy ) {
1266 + $args = [
1267 + 'taxonomy' => esc_html( $taxonomy ),
1268 + 'hide_empty' => false,
1269 + 'pad_counts' => true,
1270 + 'hierarchical' => true,
1271 + ];
1272 +
1273 + $cache_key = 'rtsb_get_terms_filter_products' . $taxonomy;
1274 + $taxonomy_terms = wp_cache_get( $cache_key, 'shopbuilder' );
1275 +
1276 + if ( false === $taxonomy_terms ) {
1277 + $queried_object = get_queried_object();
1278 +
1279 + if ( 'archive' === apply_filters( 'rtsb/builder/set/current/page/type', '' ) && $queried_object instanceof WP_Term && $queried_object->taxonomy === $taxonomy ) {
1280 + $term_id = $queried_object->term_id;
1281 + $taxonomy = $queried_object->taxonomy;
1282 + $archive_cache_key = 'rtsb_get_terms_filter_products_' . $taxonomy . $term_id;
1283 + $taxonomy_terms = wp_cache_get( $archive_cache_key, 'shopbuilder' );
1284 + if ( false === $taxonomy_terms ) {
1285 + $taxonomy_terms = [ $queried_object ];
1286 + $child_args = [
1287 + 'taxonomy' => $taxonomy,
1288 + 'child_of' => $term_id,
1289 + 'hide_empty' => false,
1290 + ];
1291 +
1292 + $child_terms = get_terms( $child_args );
1293 +
1294 + if ( ! empty( $child_terms ) ) {
1295 + $taxonomy_terms = array_merge( $taxonomy_terms, $child_terms );
1296 + }
1297 +
1298 + wp_cache_set( $archive_cache_key, $taxonomy_terms, 'shopbuilder' );
1299 + Cache::set_data_cache_key( $archive_cache_key );
1300 + }
1301 + } else {
1302 + $taxonomy_terms = get_terms( $args );
1303 + }
1304 +
1305 + wp_cache_set( $cache_key, $taxonomy_terms, 'shopbuilder' );
1306 + Cache::set_data_cache_key( $cache_key );
1307 + }
1308 +
1309 + return $taxonomy_terms;
1310 + }
1311 + /**
1312 + * Generates an error message block.
1313 + *
1314 + * @param array $title The title array of the error message block.
1315 + * @param string $wrapper Additional CSS class for the wrapper div.
1316 + *
1317 + * @return string The HTML representation of the error message block.
1318 + */
1319 + public static function filter_error_message( $title, $wrapper ) {
1320 + $html = '<div class="rtsb-product-default-filters ' . esc_attr( $wrapper ) . '">';
1321 + $html .= self::get_default_filter_title( $title );
1322 + $html .= '<div class="default-filter-content">';
1323 + $html .= '<p class="no-filter">' . esc_html__( 'Nothing found.', 'shopbuilder' ) . '</p>';
1324 + $html .= '</div>';
1325 + $html .= '</div>';
1326 +
1327 + return $html;
1328 + }
1329 + /**
1330 + * Get filter title.
1331 + *
1332 + * @param array $title Filter title.
1333 + * @return string
1334 + */
1335 + public static function get_default_filter_title( $title ) {
1336 + $html = '';
1337 +
1338 + if ( empty( $title['title'] ) ) {
1339 + return $html;
1340 + }
1341 +
1342 + $html .= '<div class="default-filter-title-wrapper">';
1343 +
1344 + $html .= '<h3 class="widget-title rtsb-d-flex rtsb-align-items-center"><span class="title">' . $title['title'] . '</span></h3>';
1345 +
1346 + $html .= '</div>';
1347 +
1348 + return apply_filters( 'rtsb/elementor/default/filter/title', $html, $title );
1349 + }
1350 + /**
1351 + * Recursive function to generate the filter list with hierarchy.
1352 + *
1353 + * @param array $data Array of required data.
1354 + * @param string $input Type of input field for the filter (e.g., checkbox).
1355 + * @param array $additional_data Data for additional filtering.
1356 + * @param int $parent ID of the parent term (default: 0).
1357 + *
1358 + * @return string The generated HTML for the product filter list.
1359 + */
1360 + public static function get_product_default_filter_list_html( $data, $input = 'checkbox', $additional_data = [], $parent = 0 ) {
1361 +
1362 + $html = '';
1363 + $default_tax = [];
1364 + $is_attribute = ! empty( $data['is_attribute'] );
1365 + $active_option = isset( $_GET[ $additional_data['taxonomy'] ] ) ? explode( ',', wc_clean( wp_unslash( $_GET[ $additional_data['taxonomy'] ] ) ) ) : []; // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
1366 + $counter = 0;
1367 +
1368 + if ( $is_attribute ) {
1369 + list(
1370 + 'filter_name' => $filter_name,
1371 + 'base_link' => $base_link
1372 + ) = self::get_product_filters_attribute_term_info( $additional_data['taxonomy'] );
1373 + }
1374 +
1375 + $html .= '<ul class="product-default-filters input-type-' . esc_attr( $input ) . '">';
1376 +
1377 + foreach ( $data['taxonomy'] as $tax ) {
1378 + if ( $tax->parent !== $parent ) {
1379 + continue;
1380 + }
1381 +
1382 + if ( $is_attribute ) {
1383 + $tax_link = remove_query_arg( $filter_name, $base_link );
1384 + $tax_link = add_query_arg( $filter_name, $tax->slug, $tax_link );
1385 + $active_option = isset( $_GET[ $filter_name ] ) ? explode( ',', sanitize_text_field( wp_unslash( $_GET[ $filter_name ] ) ) ) : []; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
1386 + } else {
1387 + $tax_link = get_term_link( $tax );
1388 + }
1389 +
1390 + $unique_id = substr( uniqid(), -4 );
1391 +
1392 + $active_tax = in_array( $tax->slug, $active_option, true ) ? ' checked' : '';
1393 + $active_tax_parent = in_array( $tax->slug, $active_option, true ) ? ' active' : '';
1394 + $term_children = in_array( $tax->taxonomy, [ 'product_cat', 'product_brand' ], true ) ? get_term_children( $tax->term_id, $tax->taxonomy ) : [];
1395 + $taxonomy = $tax->taxonomy;
1396 + $product_count = $tax->count;
1397 +
1398 + // Show count.
1399 + if ( 'archive' === apply_filters( 'rtsb/builder/set/current/page/type', '' ) && ! empty( $data['count_display'] ) && 'block' === $data['count_display'] ) {
1400 + $product_count = self::count_tax_data( $tax, $tax->count );
1401 + }
1402 +
1403 + // Show Empty Categories.
1404 + if ( empty( $data['show_empty_terms'] ) && 0 === $product_count ) {
1405 + continue;
1406 + }
1407 +
1408 + $html .= '<li class="rtsb-default-filter-term-item term-item-' . absint( $tax->term_id ) . esc_attr( $term_children ? ' term-has-children' : '' ) . ( ! $data['show_child'] ? ' child-terms-hidden' : '' ) . '">
1409 + <div class="rtsb-default-filter-group' . esc_attr( $active_tax_parent ) . '">
1410 + <input type="' . esc_attr( $input ) . '" class="rtsb-default-filter-trigger rtsb-' . esc_attr( $input . '-filter rtsb-term-' . $tax->slug . $active_tax ) . '" name="rtsb-filter-' . esc_attr( $taxonomy ) . '[]" id="rtsb-default-term-filter-' . $unique_id . absint( $tax->term_id ) . '" value="' . esc_attr( $tax->slug ) . '" ' . esc_attr( $active_tax ) . '>
1411 + <label class="rtsb-default-' . esc_attr( $input ) . '-filter-label" for="rtsb-default-term-filter-' . $unique_id . absint( $tax->term_id ) . '">
1412 + <span class="name">' . esc_html( $tax->name ) . '</span>
1413 + </label>
1414 + <div class="rtsb-product-count">(' . esc_html( $product_count ) . ')</div>
1415 + ' . ( ! empty( $term_children ) && $data['show_child'] ? '<i class="rtsb-plus-icon"></i>' : '' ) . '
1416 + </div>';
1417 +
1418 + // Show Sub-categories.
1419 + if ( $data['show_child'] ) {
1420 + $children = self::get_product_default_filter_list_html( $data, $input, $additional_data, $tax->term_id );
1421 +
1422 + if ( ! empty( $children ) ) {
1423 + $html .= '<div class="filter-child">' . $children . '</div>';
1424 + }
1425 + }
1426 +
1427 + $counter++;
1428 +
1429 + $html .= '</li>';
1430 + }
1431 +
1432 + $html .= '</ul>';
1433 +
1434 + // Check if the output contains any child elements.
1435 + $has_children = strpos( $html, '<li class="rtsb-default-filter-term-item' ) !== false;
1436 +
1437 + if ( ! $has_children ) {
1438 + // Remove the outer <ul> if there are no child elements.
1439 + $html = '';
1440 + }
1441 + return $html;
1442 + }
1443 + /**
1444 + * Get attribute term info.
1445 + *
1446 + * @param string $tax Taxonomy type.
1447 + * @return array
1448 + */
1449 + public static function get_product_filters_attribute_term_info( $tax ) {
1450 + $result = [];
1451 + $attributes = wc_get_attribute_taxonomies();
1452 +
1453 + foreach ( $attributes as $attr ) {
1454 + if ( str_replace( 'pa_', '', $tax ) === $attr->attribute_name ) {
1455 + $term_type = $attr->attribute_type;
1456 + $attribute_slug = $attr->attribute_name;
1457 + $attribute = wc_attribute_taxonomy_name( $attr->attribute_name );
1458 + break;
1459 + }
1460 + }
1461 +
1462 + $filter_name = 'filter_' . wc_attribute_taxonomy_slug( $attribute_slug );
1463 +
1464 + $result['attribute'] = $attribute ?? '';
1465 + $result['term_type'] = $term_type ?? '';
1466 + $result['attribute_slug'] = $attribute_slug ?? '';
1467 + $result['filter_name'] = $filter_name;
1468 + $result['base_link'] = self::get_base_url();
1469 +
1470 + return $result;
1471 + }
1472 + /**
1473 + * Get base URL.
1474 + *
1475 + * @return string|null
1476 + */
1477 + public static function get_base_url() {
1478 + global $wp;
1479 + return home_url( add_query_arg( [], $wp->request ) );
1480 + }
1481 + /**
1482 + * Count the number of occurrences for a specific term in a taxonomy for the current queried object.
1483 + *
1484 + * @param object|array $tax The term object for the taxonomy.
1485 + * @param int $count The initial count value.
1486 + *
1487 + * @return int The updated count value.
1488 + */
1489 + public static function count_tax_data( $tax, $count ) {
1490 + $page = get_queried_object();
1491 +
1492 + if ( is_array( $tax ) && strpos( $tax['taxonomy'], 'attribute_' ) !== false ) {
1493 + $taxonomy = str_replace( 'attribute_', '', $tax['taxonomy'] );
1494 + $term_id = $tax['term_id'];
1495 + } else {
1496 + $taxonomy = $tax->taxonomy;
1497 + $term_id = $tax->term_id;
1498 + }
1499 +
1500 + if ( strpos( $page->taxonomy, 'pa_' ) !== false ) {
1501 + $args['status'] = 'publish';
1502 + $args['limit'] = -1;
1503 + $args['return'] = 'ids';
1504 + $args['tax_query'] = [ // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
1505 + 'relation' => 'AND',
1506 + [
1507 + 'taxonomy' => $page->taxonomy,
1508 + 'field' => 'term_id',
1509 + 'terms' => $page->term_id,
1510 + 'operator' => 'IN',
1511 + ],
1512 + [
1513 + 'taxonomy' => $tax->taxonomy,
1514 + 'field' => 'term_id',
1515 + 'terms' => $tax->term_id,
1516 + 'operator' => 'IN',
1517 + ],
1518 + ];
1519 +
1520 + $query = new WC_Product_Query( $args );
1521 + $products = $query->get_products();
1522 +
1523 + return count( $products );
1524 + }
1525 +
1526 + if ( $taxonomy !== $page->taxonomy ) {
1527 + $args = [
1528 + 'limit' => -1,
1529 + 'return' => 'ids',
1530 + 'status' => 'publish',
1531 + 'tax_query' => [ // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
1532 + [
1533 + 'taxonomy' => $taxonomy,
1534 + 'field' => 'term_id',
1535 + 'terms' => $term_id,
1536 + ],
1537 + ],
1538 + ];
1539 +
1540 + if ( 'product_cat' === $page->taxonomy ) {
1541 + $args['category'] = [ $page->slug ];
1542 + }
1543 +
1544 + if ( 'product_tag' === $page->taxonomy ) {
1545 + $args['tag'] = [ $page->slug ];
1546 + }
1547 +
1548 + $query = new WC_Product_Query( $args );
1549 + $products = $query->get_products();
1550 +
1551 + $count = count( $products );
1552 + }
1553 +
1554 + return $count;
1555 + }
1556 + /**
1557 + * Get filter HTML.
1558 + *
1559 + * @param string $filter_type Filter type.
1560 + * @param array $options Options.
1561 + * @param array $additional_data Data for additional filtering.
1562 + * @param string $input Input type.
1563 + *
1564 + * @return string The generated HTML for the attribute filter list.
1565 + */
1566 + public static function get_default_filter_html( $filter_type, $options, $additional_data = [], $input = 'checkbox' ) {
1567 + $html = '<ul class="product-filters input-type-' . esc_attr( $input ) . '" ';
1568 + $active_option = isset( $_GET[ $filter_type ] ) ? explode( ',', wc_clean( wp_unslash( $_GET[ $filter_type ] ) ) ) : []; // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
1569 + $option_link = self::get_base_url() . '/' . $filter_type . '/';
1570 +
1571 + foreach ( $options as $option => $option_name ) {
1572 + $unique_id = substr( uniqid(), -6 );
1573 + $active_tax = in_array( $option, $active_option, true ) ? ' checked' : '';
1574 + $active_group = in_array( $option, $active_option, true ) ? ' active' : '';
1575 +
1576 + $html .= '
1577 + <li class="rtsb-term-item">
1578 + <div class="rtsb-default-filter-group' . esc_attr( $active_group ) . '">
1579 + <input type="' . esc_attr( $input ) . '" class="rtsb-default-filter-trigger rtsb-' . esc_attr( $input ) . '-filter rtsb-term-' . esc_attr( $option ) . esc_attr( $active_tax ) . '" name="rtsb-filter-' . esc_attr( $filter_type ) . '[]" id="rtsb-term-default-filter-' . $unique_id . '" value="' . esc_attr( $option ) . '" ' . $active_tax . '>
1580 + <label class="rtsb-default-' . esc_attr( $input ) . '-filter-label" for="rtsb-term-default-filter-' . $unique_id . '">
1581 + <span class="name">' . esc_html( $option_name ) . '</span>
1582 + </label>
1583 + </div>
1584 + </li>';
1585 + }
1586 +
1587 + $html .= '</ul>';
1588 +
1589 + return $html;
1590 + }
1591 + /**
1592 + * Get the count of products with a specific star rating.
1593 + *
1594 + * @param int $star_rating The star rating value.
1595 + *
1596 + * @return int
1597 + */
1598 + public static function get_product_rating_count( $star_rating ) {
1599 + $args = [
1600 + 'status' => 'publish',
1601 + 'limit' => -1,
1602 + 'product_rating' => sprintf( '%.1f', $star_rating ),
1603 + ];
1604 +
1605 + if ( is_product_taxonomy() ) {
1606 + $term = get_queried_object();
1607 + $term_type = 'product_cat' === $term->taxonomy ? 'product_category_id' : 'product_tag_id';
1608 +
1609 + if ( $term instanceof WP_Term ) {
1610 + $args[ $term_type ] = [ $term->term_id ];
1611 + }
1612 + }
1613 +
1614 + $query = new WC_Product_Query( $args );
1615 + $products = $query->get_products();
1616 +
1617 + return count( $products );
1618 + }
1619 + /**
1620 + * Get attribute filter HTML.
1621 + *
1622 + * @param array $data Array of required data.
1623 + * @param string $input Type of input field for the filter (e.g., color).
1624 + * @param array $additional_data Data for additional filtering.
1625 + *
1626 + * @return string The generated HTML for the attribute filter list.
1627 + */
1628 + public static function get_attribute_filter_list_html( $data, $input = 'color', $additional_data = [] ) {
1629 + if ( ! function_exists( 'rtwpvs' ) ) {
1630 + return '';
1631 + }
1632 +
1633 + $terms = $data['terms'];
1634 + $term_info = $data['term_info'];
1635 + $show_tooltips = $data['show_tooltips'];
1636 + $show_empty_terms = $data['show_empty_terms'];
1637 + $counter = 0;
1638 +
1639 + $html = '<ul class="product-default-filters rtsb-terms-wrapper ' . esc_attr( $term_info['type'] ) . '-variable-wrapper' . esc_attr( $data['show_label'] ) . '">';
1640 +
1641 + foreach ( $terms as $attr_term ) {
1642 + $count = $attr_term->count;
1643 + $term_link = remove_query_arg( $term_info['filter_name'], $term_info['base_link'] );
1644 + $term_link = add_query_arg( $term_info['filter_name'], $attr_term->slug, $term_link );
1645 + $unique_id = substr( uniqid(), -6 );
1646 + $name = 'term-' . wc_variation_attribute_name( $term_info['attribute'] ) . '-' . $unique_id;
1647 + $selected_class = in_array( $attr_term->slug, $term_info['current_filter'], true ) ? ' selected' : '';
1648 + $selected_item = in_array( $attr_term->slug, $term_info['current_filter'], true ) ? ' checked' : '';
1649 + $active_class = in_array( $attr_term->slug, $term_info['current_filter'], true ) ? ' active' : '';
1650 +
1651 + $args = [
1652 + 'id' => $name,
1653 + 'name' => $attr_term->name,
1654 + 'link' => $term_link,
1655 + 'type' => $term_info['type'],
1656 + 'term_id' => $attr_term->term_id,
1657 + 'term_slug' => $attr_term->slug,
1658 + 'taxonomy' => wc_variation_attribute_name( $term_info['attribute'] ),
1659 + 'tooltips' => $show_tooltips,
1660 + 'attribute_name' => $term_info['attribute'],
1661 + 'selected_item' => $selected_item,
1662 + ];
1663 +
1664 + if ( 'archive' === apply_filters( 'rtsb/builder/set/current/page/type', '' ) && ! empty( $data['count_display'] ) && 'block' === $data['count_display'] ) {
1665 + $count = self::count_tax_data( $args, $attr_term->count );
1666 + }
1667 +
1668 + $args['count'] = $count;
1669 +
1670 + if ( ! $show_empty_terms && 0 === $count ) {
1671 + continue;
1672 + }
1673 +
1674 + $html .= '<li class="rtsb-default-filter-term-item term-item-' . esc_attr( $attr_term->term_id ) . ' rtsb-term rtsb-default-' . esc_attr( $input ) . '-term ' . esc_attr( $term_info['type'] ) . '-variable-term-' . esc_attr( $attr_term->slug ) . esc_attr( $selected_class ) . '">';
1675 + $html .= '<div class="rtsb-default-filter-group' . esc_attr( $active_class ) . '">';
1676 + $html .= self::get_input_type_html( $input, $args );
1677 +
1678 + $counter++;
1679 +
1680 + $html .= '</div>';
1681 + $html .= '</li>';
1682 + }
1683 +
1684 + $html .= '</ul>';
1685 +
1686 + return $html;
1687 + }
1688 + /**
1689 + * Get input type HTML.
1690 + *
1691 + * @param string $input Input type.
1692 + * @param array $args Args.
1693 + * @return mixed|string|null
1694 + */
1695 + public static function get_input_type_html( $input, $args ) {
1696 + $html = '';
1697 + $count = $args['count'];
1698 +
1699 + switch ( $input ) {
1700 + case 'color':
1701 + $color = sanitize_hex_color( get_term_meta( $args['term_id'], 'product_attribute_color', true ) );
1702 +
1703 + $html .= sprintf(
1704 + '<input type="checkbox" id="' . esc_attr( $args['id'] ) . '" value="' . esc_attr( $args['term_slug'] ) . '" class="rtsb-attr-hidden-field" name="rtsb-filter-' . esc_attr( $args['attribute_name'] ) . '[]' . '" ' . esc_attr( $args['selected_item'] ) . '/><label for="%s" title="' . esc_attr( $args['name'] ) . '" class="rtsb-default-filter-trigger rtsb-attr-filter rtsb-color-filter rtsb-term-span rtsb-term-span-%s%s"><span class="default-filter-attr-color" style="background-color:%s;"></span><span class="default-filter-attr-name">%s</span></label><div class="rtsb-count">(%s)</div>',
1705 + esc_attr( $args['id'] ),
1706 + esc_attr( $args['type'] ),
1707 + $args['tooltips'] ? esc_attr( ' tipsy' ) : '',
1708 + esc_attr( $color ),
1709 + esc_html( $args['name'] ),
1710 + absint( $count )
1711 + );
1712 + break;
1713 +
1714 + case 'image':
1715 + if ( ! function_exists( 'rtwpvs' ) ) {
1716 + return $html;
1717 + }
1718 +
1719 + $attachment_id = absint( get_term_meta( $args['term_id'], 'product_attribute_image', true ) );
1720 + $image_size = rtwpvs()->get_option( 'attribute_image_size' );
1721 + $image_url = wp_get_attachment_image_url( $attachment_id, apply_filters( 'rtwpvs_product_attribute_image_size', $image_size ) );
1722 +
1723 + $html .= sprintf(
1724 + '<input type="checkbox" id="' . esc_attr( $args['id'] ) . '" value="' . esc_attr( $args['term_slug'] ) . '" class="rtsb-attr-hidden-field" name="rtsb-filter-' . esc_attr( $args['attribute_name'] ) . '[]' . '" ' . esc_attr( $args['selected_item'] ) . '/><label for="%s" title="' . esc_attr( $args['name'] ) . '" class="rtsb-default-filter-trigger rtsb-image-filter rtsb-term-span rtsb-term-span-%s%s"><img class="rtsb-default-attr-filter" alt="%s" src="%s" /></label>',
1725 + esc_attr( $args['id'] ),
1726 + esc_attr( $args['type'] ),
1727 + $args['tooltips'] ? esc_attr( ' tipsy' ) : '',
1728 + esc_attr( $args['name'] ),
1729 + esc_url( $image_url )
1730 + );
1731 + break;
1732 +
1733 + case 'button':
1734 + $html .= sprintf(
1735 + '<input id="' . esc_attr( $args['id'] ) . '" type="checkbox" value="' . esc_attr( $args['term_slug'] ) . '" class="rtsb-attr-hidden-field" name="rtsb-filter-' . esc_attr( $args['attribute_name'] ) . '[]' . '" ' . esc_attr( $args['selected_item'] ) . '/><label for="%s" title="' . esc_attr( $args['name'] ) . '" class="rtsb-default-filter-trigger rtsb-attr-filter rtsb-button-filter rtsb-term-span rtsb-term-span-%s%s"><span class="default-filter-attr-name">%s</span><div class="rtsb-count">(%s)</div></label>',
1736 + esc_attr( $args['id'] ),
1737 + esc_attr( $args['type'] ),
1738 + $args['tooltips'] ? esc_attr( ' tipsy' ) : '',
1739 + esc_html( $args['name'] ),
1740 + absint( $count )
1741 + );
1742 + break;
1743 +
1744 + default:
1745 + }
1746 +
1747 + return apply_filters( 'rtsb/elementor/default/filter/get_input_type_html', $html );
1748 + }
1749 + /**
1750 + * Get reset button.
1751 + *
1752 + * @param string $btn_text Button text.
1753 + * @param array $settings Settings array.
1754 + *
1755 + * @return string
1756 + */
1757 + public static function get_default_filter_reset_button( $btn_text, $settings ) {
1758 + $html = '';
1759 +
1760 + ob_start();
1761 +
1762 + $active = ! empty( $_SERVER['QUERY_STRING'] ) ? ' active' : '';
1763 + $reset = ! empty( $settings['reset_btn'] );
1764 + $apply_text = ! empty( $settings['apply_filters_btn_text'] ) ? $settings['apply_filters_btn_text'] : esc_html__( 'Apply Filters', 'shopbuilder' );
1765 + $apply_icon = ! empty( $settings['apply_filters_btn_icon'] ) ? $settings['apply_filters_btn_icon'] : [];
1766 + echo '<div class="default-filter-btn-wrapper">';
1767 + ?>
1768 + <?php if ( $settings['show_filter_btn'] ) { ?>
1769 + <div class="rtsb-product-default-filters rtsb-apply-filters-btn">
1770 + <div class="reset-btn-item">
1771 + <button class="rtsb-apply-filters init">
1772 + <span class="icon"><?php Fns::print_html( Fns::icons_manager( $apply_icon, 'icon-default' ) ); ?></span>
1773 + <span class="text reset-text"><?php echo esc_html( $apply_text ); ?></span>
1774 + <span></span>
1775 + </button>
1776 + </div>
1777 + </div>
1778 + <?php } ?>
1779 + <?php
1780 + if ( $reset ) {
1781 + ?>
1782 + <div class="rtsb-product-default-filters rtsb-reset<?php echo esc_attr( $active ); ?>">
1783 + <div class="reset-btn-item">
1784 + <button class="product-default-filter-reset">
1785 + <span class="text reset-text"><?php echo esc_html( $btn_text ); ?></span>
1786 + <span></span>
1787 + </button>
1788 + </div>
1789 + </div>
1790 + <?php
1791 + }
1792 + echo '</div>';
1793 +
1794 + $html .= ob_get_clean();
1795 +
1796 + return $html;
956 1797 }
957 1798 }