Version Description
- Fixed PHP warning in bt_bb_row.
Download this release
Release Info
Developer | boldthemes |
Plugin | Bold Page Builder |
Version | 4.3.8 |
Comparing to | |
See all releases |
Code changes from version 4.3.7 to 4.3.8
- bold-builder.php +2 -2
- content_elements/bt_bb_accordion/bt_bb_accordion.php +1 -1
- content_elements/bt_bb_accordion_item/bt_bb_accordion_item.php +1 -1
- content_elements/bt_bb_button/bt_bb_button.php +1 -1
- content_elements/bt_bb_column/bt_bb_column.php +1 -1
- content_elements/bt_bb_column_inner/bt_bb_column_inner.php +1 -1
- content_elements/bt_bb_contact_form_7/bt_bb_contact_form_7.php +1 -1
- content_elements/bt_bb_content_slider/bt_bb_content_slider.php +1 -1
- content_elements/bt_bb_content_slider_item/bt_bb_content_slider_item.php +1 -1
- content_elements/bt_bb_cost_calculator/bt_bb_cost_calculator.php +1 -1
- content_elements/bt_bb_cost_calculator_item/bt_bb_cost_calculator_item.php +1 -1
- content_elements/bt_bb_countdown/bt_bb_countdown.php +1 -1
- content_elements/bt_bb_counter/bt_bb_counter.php +1 -1
- content_elements/bt_bb_custom_menu/bt_bb_custom_menu.php +1 -1
- content_elements/bt_bb_google_maps/bt_bb_google_maps.php +1 -1
- content_elements/bt_bb_google_maps_location/bt_bb_google_maps_location.php +1 -1
- content_elements/bt_bb_headline/bt_bb_headline.php +1 -1
- content_elements/bt_bb_icon/bt_bb_icon.php +1 -1
- content_elements/bt_bb_image/bt_bb_image.php +1 -1
- content_elements/bt_bb_instagram/bt_bb_instagram.php +1 -1
- content_elements/bt_bb_latest_posts/bt_bb_latest_posts.php +1 -1
- content_elements/bt_bb_leaflet_map/bt_bb_leaflet_map.php +1 -1
- content_elements/bt_bb_leaflet_map_location/bt_bb_leaflet_map_location.php +1 -1
- content_elements/bt_bb_masonry_image_grid/bt_bb_masonry_image_grid.php +1 -1
- content_elements/bt_bb_masonry_post_grid/bt_bb_masonry_post_grid.php +1 -1
- content_elements/bt_bb_price_list/bt_bb_price_list.php +1 -1
- content_elements/bt_bb_progress_bar/bt_bb_progress_bar.php +1 -1
- content_elements/bt_bb_raw_content/bt_bb_raw_content.php +1 -1
- content_elements/bt_bb_row/bt_bb_row.php +1 -1
- content_elements/bt_bb_row_inner/bt_bb_row_inner.php +1 -1
- content_elements/bt_bb_section/bt_bb_section.php +1 -1
- content_elements/bt_bb_separator/bt_bb_separator.php +1 -1
- content_elements/bt_bb_service/bt_bb_service.php +1 -1
- content_elements/bt_bb_slider/bt_bb_slider.php +1 -1
- content_elements/bt_bb_tab_item/bt_bb_tab_item.php +1 -1
- content_elements/bt_bb_tabs/bt_bb_tabs.php +1 -1
- content_elements/bt_bb_text/bt_bb_text.php +1 -1
- content_elements/bt_bb_twitter/bt_bb_twitter.php +1 -1
- content_elements/bt_bb_video/bt_bb_video.php +1 -1
- readme.txt +3 -0
bold-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Plugin Name: Bold Builder
|
5 |
* Description: WordPress page builder.
|
6 |
-
* Version: 4.3.
|
7 |
* Author: BoldThemes
|
8 |
* Author URI: https://www.bold-themes.com
|
9 |
* Text Domain: bold-builder
|
@@ -12,7 +12,7 @@
|
|
12 |
defined( 'ABSPATH' ) || exit;
|
13 |
|
14 |
// VERSION --------------------------------------------------------- \\
|
15 |
-
define( 'BT_BB_VERSION', '4.3.
|
16 |
// VERSION --------------------------------------------------------- \\
|
17 |
|
18 |
/**
|
3 |
/**
|
4 |
* Plugin Name: Bold Builder
|
5 |
* Description: WordPress page builder.
|
6 |
+
* Version: 4.3.8
|
7 |
* Author: BoldThemes
|
8 |
* Author URI: https://www.bold-themes.com
|
9 |
* Text Domain: bold-builder
|
12 |
defined( 'ABSPATH' ) || exit;
|
13 |
|
14 |
// VERSION --------------------------------------------------------- \\
|
15 |
+
define( 'BT_BB_VERSION', '4.3.8' );
|
16 |
// VERSION --------------------------------------------------------- \\
|
17 |
|
18 |
/**
|
content_elements/bt_bb_accordion/bt_bb_accordion.php
CHANGED
@@ -59,7 +59,7 @@ class bt_bb_accordion extends BT_BB_Element {
|
|
59 |
}
|
60 |
|
61 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
62 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
63 |
$this->responsive_data_override_class(
|
64 |
$class, $data_override_class,
|
65 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
59 |
}
|
60 |
|
61 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
62 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
63 |
$this->responsive_data_override_class(
|
64 |
$class, $data_override_class,
|
65 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_accordion_item/bt_bb_accordion_item.php
CHANGED
@@ -10,7 +10,7 @@ class bt_bb_accordion_item extends BT_BB_Element {
|
|
10 |
$class = array( $this->shortcode );
|
11 |
|
12 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
13 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
14 |
$this->responsive_data_override_class(
|
15 |
$class, $data_override_class,
|
16 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
10 |
$class = array( $this->shortcode );
|
11 |
|
12 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
13 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
14 |
$this->responsive_data_override_class(
|
15 |
$class, $data_override_class,
|
16 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_button/bt_bb_button.php
CHANGED
@@ -105,7 +105,7 @@ class bt_bb_button extends BT_BB_Element {
|
|
105 |
}
|
106 |
|
107 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
108 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
109 |
$this->responsive_data_override_class(
|
110 |
$class, $data_override_class,
|
111 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
105 |
}
|
106 |
|
107 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
108 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
109 |
$this->responsive_data_override_class(
|
110 |
$class, $data_override_class,
|
111 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_column/bt_bb_column.php
CHANGED
@@ -184,7 +184,7 @@ class bt_bb_column extends BT_BB_Element {
|
|
184 |
);
|
185 |
|
186 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
187 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
188 |
$this->responsive_data_override_class(
|
189 |
$class, $data_override_class,
|
190 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
184 |
);
|
185 |
|
186 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
187 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
188 |
$this->responsive_data_override_class(
|
189 |
$class, $data_override_class,
|
190 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_column_inner/bt_bb_column_inner.php
CHANGED
@@ -182,7 +182,7 @@ class bt_bb_column_inner extends BT_BB_Element {
|
|
182 |
);
|
183 |
|
184 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
185 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
186 |
$this->responsive_data_override_class(
|
187 |
$class, $data_override_class,
|
188 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
182 |
);
|
183 |
|
184 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
185 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
186 |
$this->responsive_data_override_class(
|
187 |
$class, $data_override_class,
|
188 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_contact_form_7/bt_bb_contact_form_7.php
CHANGED
@@ -25,7 +25,7 @@ class bt_bb_contact_form_7 extends BT_BB_Element {
|
|
25 |
}
|
26 |
|
27 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
28 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
29 |
$this->responsive_data_override_class(
|
30 |
$class, $data_override_class,
|
31 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
25 |
}
|
26 |
|
27 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
28 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
29 |
$this->responsive_data_override_class(
|
30 |
$class, $data_override_class,
|
31 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_content_slider/bt_bb_content_slider.php
CHANGED
@@ -118,7 +118,7 @@ class bt_bb_content_slider extends BT_BB_Element {
|
|
118 |
$data_slick = $data_slick . '}\' ';
|
119 |
|
120 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
121 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
122 |
$this->responsive_data_override_class(
|
123 |
$class, $data_override_class,
|
124 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
118 |
$data_slick = $data_slick . '}\' ';
|
119 |
|
120 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
121 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
122 |
$this->responsive_data_override_class(
|
123 |
$class, $data_override_class,
|
124 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_content_slider_item/bt_bb_content_slider_item.php
CHANGED
@@ -34,7 +34,7 @@ class bt_bb_content_slider_item extends BT_BB_Element {
|
|
34 |
}
|
35 |
|
36 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
37 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
38 |
$this->responsive_data_override_class(
|
39 |
$class, $data_override_class,
|
40 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
34 |
}
|
35 |
|
36 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
37 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
38 |
$this->responsive_data_override_class(
|
39 |
$class, $data_override_class,
|
40 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_cost_calculator/bt_bb_cost_calculator.php
CHANGED
@@ -37,7 +37,7 @@ class bt_bb_cost_calculator extends BT_BB_Element {
|
|
37 |
}
|
38 |
|
39 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
40 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
41 |
$this->responsive_data_override_class(
|
42 |
$class, $data_override_class,
|
43 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
37 |
}
|
38 |
|
39 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
40 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
41 |
$this->responsive_data_override_class(
|
42 |
$class, $data_override_class,
|
43 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_cost_calculator_item/bt_bb_cost_calculator_item.php
CHANGED
@@ -27,7 +27,7 @@ class bt_bb_cost_calculator_item extends BT_BB_Element {
|
|
27 |
}
|
28 |
|
29 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
30 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
31 |
$this->responsive_data_override_class(
|
32 |
$class, $data_override_class,
|
33 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
27 |
}
|
28 |
|
29 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
30 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
31 |
$this->responsive_data_override_class(
|
32 |
$class, $data_override_class,
|
33 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_countdown/bt_bb_countdown.php
CHANGED
@@ -63,7 +63,7 @@ class bt_bb_countdown extends BT_BB_Element {
|
|
63 |
}
|
64 |
|
65 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
66 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
67 |
$this->responsive_data_override_class(
|
68 |
$class, $data_override_class,
|
69 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
63 |
}
|
64 |
|
65 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
66 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
67 |
$this->responsive_data_override_class(
|
68 |
$class, $data_override_class,
|
69 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_counter/bt_bb_counter.php
CHANGED
@@ -35,7 +35,7 @@ class bt_bb_counter extends BT_BB_Element {
|
|
35 |
);
|
36 |
|
37 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
38 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
39 |
$this->responsive_data_override_class(
|
40 |
$class, $data_override_class,
|
41 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
35 |
);
|
36 |
|
37 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
38 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
39 |
$this->responsive_data_override_class(
|
40 |
$class, $data_override_class,
|
41 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_custom_menu/bt_bb_custom_menu.php
CHANGED
@@ -43,7 +43,7 @@ class bt_bb_custom_menu extends BT_BB_Element {
|
|
43 |
);
|
44 |
|
45 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
46 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
47 |
$this->responsive_data_override_class(
|
48 |
$class, $data_override_class,
|
49 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
43 |
);
|
44 |
|
45 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
46 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
47 |
$this->responsive_data_override_class(
|
48 |
$class, $data_override_class,
|
49 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_google_maps/bt_bb_google_maps.php
CHANGED
@@ -83,7 +83,7 @@ class bt_bb_google_maps extends BT_BB_Element {
|
|
83 |
}
|
84 |
|
85 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
86 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
87 |
$this->responsive_data_override_class(
|
88 |
$class, $data_override_class,
|
89 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
83 |
}
|
84 |
|
85 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
86 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
87 |
$this->responsive_data_override_class(
|
88 |
$class, $data_override_class,
|
89 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_google_maps_location/bt_bb_google_maps_location.php
CHANGED
@@ -43,7 +43,7 @@ class bt_bb_google_maps_location extends BT_BB_Element {
|
|
43 |
}
|
44 |
|
45 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
46 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
47 |
$this->responsive_data_override_class(
|
48 |
$class, $data_override_class,
|
49 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
43 |
}
|
44 |
|
45 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
46 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
47 |
$this->responsive_data_override_class(
|
48 |
$class, $data_override_class,
|
49 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_headline/bt_bb_headline.php
CHANGED
@@ -136,7 +136,7 @@ class bt_bb_headline extends BT_BB_Element {
|
|
136 |
);
|
137 |
|
138 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
139 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
140 |
$this->responsive_data_override_class(
|
141 |
$class, $data_override_class,
|
142 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
136 |
);
|
137 |
|
138 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
139 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
140 |
$this->responsive_data_override_class(
|
141 |
$class, $data_override_class,
|
142 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_icon/bt_bb_icon.php
CHANGED
@@ -87,7 +87,7 @@ class bt_bb_icon extends BT_BB_Element {
|
|
87 |
);
|
88 |
|
89 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
90 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
91 |
$this->responsive_data_override_class(
|
92 |
$class, $data_override_class,
|
93 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
87 |
);
|
88 |
|
89 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
90 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
91 |
$this->responsive_data_override_class(
|
92 |
$class, $data_override_class,
|
93 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_image/bt_bb_image.php
CHANGED
@@ -178,7 +178,7 @@ class bt_bb_image extends BT_BB_Element {
|
|
178 |
}
|
179 |
|
180 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
181 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
182 |
$this->responsive_data_override_class(
|
183 |
$class, $data_override_class,
|
184 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
178 |
}
|
179 |
|
180 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
181 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
182 |
$this->responsive_data_override_class(
|
183 |
$class, $data_override_class,
|
184 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_instagram/bt_bb_instagram.php
CHANGED
@@ -39,7 +39,7 @@ class bt_bb_instagram extends BT_BB_Element {
|
|
39 |
}
|
40 |
|
41 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
42 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
43 |
$this->responsive_data_override_class(
|
44 |
$class, $data_override_class,
|
45 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
39 |
}
|
40 |
|
41 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
42 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
43 |
$this->responsive_data_override_class(
|
44 |
$class, $data_override_class,
|
45 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_latest_posts/bt_bb_latest_posts.php
CHANGED
@@ -48,7 +48,7 @@ class bt_bb_latest_posts extends BT_BB_Element {
|
|
48 |
}
|
49 |
|
50 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
51 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
52 |
$this->responsive_data_override_class(
|
53 |
$class, $data_override_class,
|
54 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
48 |
}
|
49 |
|
50 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
51 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
52 |
$this->responsive_data_override_class(
|
53 |
$class, $data_override_class,
|
54 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_leaflet_map/bt_bb_leaflet_map.php
CHANGED
@@ -75,7 +75,7 @@ class bt_bb_leaflet_map extends BT_BB_Element {
|
|
75 |
}
|
76 |
|
77 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
78 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
79 |
$this->responsive_data_override_class(
|
80 |
$class, $data_override_class,
|
81 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
75 |
}
|
76 |
|
77 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
78 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
79 |
$this->responsive_data_override_class(
|
80 |
$class, $data_override_class,
|
81 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_leaflet_map_location/bt_bb_leaflet_map_location.php
CHANGED
@@ -47,7 +47,7 @@ class bt_bb_leaflet_map_location extends BT_BB_Element {
|
|
47 |
}
|
48 |
|
49 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
50 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
51 |
$this->responsive_data_override_class(
|
52 |
$class, $data_override_class,
|
53 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
47 |
}
|
48 |
|
49 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
50 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
51 |
$this->responsive_data_override_class(
|
52 |
$class, $data_override_class,
|
53 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_masonry_image_grid/bt_bb_masonry_image_grid.php
CHANGED
@@ -52,7 +52,7 @@ class bt_bb_masonry_image_grid extends BT_BB_Element {
|
|
52 |
}
|
53 |
|
54 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
55 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
56 |
$this->responsive_data_override_class(
|
57 |
$class, $data_override_class,
|
58 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
52 |
}
|
53 |
|
54 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
55 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
56 |
$this->responsive_data_override_class(
|
57 |
$class, $data_override_class,
|
58 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_masonry_post_grid/bt_bb_masonry_post_grid.php
CHANGED
@@ -269,7 +269,7 @@ class bt_bb_masonry_post_grid extends BT_BB_Element {
|
|
269 |
}
|
270 |
|
271 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
272 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
273 |
$this->responsive_data_override_class(
|
274 |
$class, $data_override_class,
|
275 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
269 |
}
|
270 |
|
271 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
272 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
273 |
$this->responsive_data_override_class(
|
274 |
$class, $data_override_class,
|
275 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_price_list/bt_bb_price_list.php
CHANGED
@@ -65,7 +65,7 @@ class bt_bb_price_list extends BT_BB_Element {
|
|
65 |
}
|
66 |
|
67 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
68 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
69 |
$this->responsive_data_override_class(
|
70 |
$class, $data_override_class,
|
71 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
65 |
}
|
66 |
|
67 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
68 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
69 |
$this->responsive_data_override_class(
|
70 |
$class, $data_override_class,
|
71 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_progress_bar/bt_bb_progress_bar.php
CHANGED
@@ -73,7 +73,7 @@ class bt_bb_progress_bar extends BT_BB_Element {
|
|
73 |
}
|
74 |
|
75 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
76 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
77 |
$this->responsive_data_override_class(
|
78 |
$class, $data_override_class,
|
79 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
73 |
}
|
74 |
|
75 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
76 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
77 |
$this->responsive_data_override_class(
|
78 |
$class, $data_override_class,
|
79 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_raw_content/bt_bb_raw_content.php
CHANGED
@@ -10,7 +10,7 @@ class bt_bb_raw_content extends BT_BB_Element {
|
|
10 |
$class = array( $this->shortcode );
|
11 |
|
12 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
13 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
14 |
$this->responsive_data_override_class(
|
15 |
$class, $data_override_class,
|
16 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
10 |
$class = array( $this->shortcode );
|
11 |
|
12 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
13 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
14 |
$this->responsive_data_override_class(
|
15 |
$class, $data_override_class,
|
16 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_row/bt_bb_row.php
CHANGED
@@ -70,7 +70,7 @@ class bt_bb_row extends BT_BB_Element {
|
|
70 |
$style_attr = apply_filters( $this->shortcode . '_style_attr', $style_attr, $atts );
|
71 |
|
72 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
73 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
74 |
$this->responsive_data_override_class(
|
75 |
$class, $data_override_class,
|
76 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
70 |
$style_attr = apply_filters( $this->shortcode . '_style_attr', $style_attr, $atts );
|
71 |
|
72 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
73 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
74 |
$this->responsive_data_override_class(
|
75 |
$class, $data_override_class,
|
76 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_row_inner/bt_bb_row_inner.php
CHANGED
@@ -41,7 +41,7 @@ class bt_bb_row_inner extends BT_BB_Element {
|
|
41 |
}
|
42 |
|
43 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
44 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
45 |
$this->responsive_data_override_class(
|
46 |
$class, $data_override_class,
|
47 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
41 |
}
|
42 |
|
43 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
44 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
45 |
$this->responsive_data_override_class(
|
46 |
$class, $data_override_class,
|
47 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_section/bt_bb_section.php
CHANGED
@@ -243,7 +243,7 @@ class bt_bb_section extends BT_BB_Element {
|
|
243 |
);
|
244 |
|
245 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
246 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
247 |
$this->responsive_data_override_class(
|
248 |
$class, $data_override_class,
|
249 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
243 |
);
|
244 |
|
245 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
246 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
247 |
$this->responsive_data_override_class(
|
248 |
$class, $data_override_class,
|
249 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_separator/bt_bb_separator.php
CHANGED
@@ -100,7 +100,7 @@ class bt_bb_separator extends BT_BB_Element {
|
|
100 |
if ( $icon == '' && $text == '' ) $class[] = 'bt_bb_separator_v2_without_content';
|
101 |
|
102 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
103 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
104 |
$this->responsive_data_override_class(
|
105 |
$class, $data_override_class,
|
106 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
100 |
if ( $icon == '' && $text == '' ) $class[] = 'bt_bb_separator_v2_without_content';
|
101 |
|
102 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
103 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
104 |
$this->responsive_data_override_class(
|
105 |
$class, $data_override_class,
|
106 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_service/bt_bb_service.php
CHANGED
@@ -90,7 +90,7 @@ class bt_bb_service extends BT_BB_Element {
|
|
90 |
}
|
91 |
|
92 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
93 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
94 |
$this->responsive_data_override_class(
|
95 |
$class, $data_override_class,
|
96 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
90 |
}
|
91 |
|
92 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
93 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
94 |
$this->responsive_data_override_class(
|
95 |
$class, $data_override_class,
|
96 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_slider/bt_bb_slider.php
CHANGED
@@ -109,7 +109,7 @@ class bt_bb_slider extends BT_BB_Element {
|
|
109 |
}
|
110 |
|
111 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
112 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
113 |
$this->responsive_data_override_class(
|
114 |
$class, $data_override_class,
|
115 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
109 |
}
|
110 |
|
111 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
112 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
113 |
$this->responsive_data_override_class(
|
114 |
$class, $data_override_class,
|
115 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_tab_item/bt_bb_tab_item.php
CHANGED
@@ -10,7 +10,7 @@ class bt_bb_tab_item extends BT_BB_Element {
|
|
10 |
$class = array( $this->shortcode );
|
11 |
|
12 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
13 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
14 |
$this->responsive_data_override_class(
|
15 |
$class, $data_override_class,
|
16 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
10 |
$class = array( $this->shortcode );
|
11 |
|
12 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
13 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
14 |
$this->responsive_data_override_class(
|
15 |
$class, $data_override_class,
|
16 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_tabs/bt_bb_tabs.php
CHANGED
@@ -45,7 +45,7 @@ class bt_bb_tabs extends BT_BB_Element {
|
|
45 |
}
|
46 |
|
47 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
48 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
49 |
$this->responsive_data_override_class(
|
50 |
$class, $data_override_class,
|
51 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
45 |
}
|
46 |
|
47 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
48 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
49 |
$this->responsive_data_override_class(
|
50 |
$class, $data_override_class,
|
51 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_text/bt_bb_text.php
CHANGED
@@ -24,7 +24,7 @@ class bt_bb_text extends BT_BB_Element {
|
|
24 |
}
|
25 |
|
26 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
27 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
28 |
$this->responsive_data_override_class(
|
29 |
$class, $data_override_class,
|
30 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
24 |
}
|
25 |
|
26 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
27 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
28 |
$this->responsive_data_override_class(
|
29 |
$class, $data_override_class,
|
30 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_twitter/bt_bb_twitter.php
CHANGED
@@ -82,7 +82,7 @@ class bt_bb_twitter extends BT_BB_Element {
|
|
82 |
}
|
83 |
|
84 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
85 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
86 |
$this->responsive_data_override_class(
|
87 |
$class, $data_override_class,
|
88 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
82 |
}
|
83 |
|
84 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
85 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
86 |
$this->responsive_data_override_class(
|
87 |
$class, $data_override_class,
|
88 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
content_elements/bt_bb_video/bt_bb_video.php
CHANGED
@@ -30,7 +30,7 @@ class bt_bb_video extends BT_BB_Element {
|
|
30 |
}
|
31 |
|
32 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
33 |
-
if ( ! array_key_exists( $p, $atts ) ) continue;
|
34 |
$this->responsive_data_override_class(
|
35 |
$class, $data_override_class,
|
36 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
30 |
}
|
31 |
|
32 |
foreach ( $this->extra_responsive_data_override_param as $p ) {
|
33 |
+
if ( ! is_array( $atts ) || ! array_key_exists( $p, $atts ) ) continue;
|
34 |
$this->responsive_data_override_class(
|
35 |
$class, $data_override_class,
|
36 |
apply_filters( $this->shortcode . '_responsive_data_override', array(
|
readme.txt
CHANGED
@@ -136,6 +136,9 @@ It is not possible to test Bold Builder with all themes - it should work fine wi
|
|
136 |
|
137 |
== Changelog ==
|
138 |
|
|
|
|
|
|
|
139 |
= 4.3.7 =
|
140 |
* Minor bug fixes.
|
141 |
|
136 |
|
137 |
== Changelog ==
|
138 |
|
139 |
+
= 4.3.8 =
|
140 |
+
* Fixed PHP warning in bt_bb_row.
|
141 |
+
|
142 |
= 4.3.7 =
|
143 |
* Minor bug fixes.
|
144 |
|