Version Description
- Added alt attribute to CSS Image Grid.
Download this release
Release Info
Developer | boldthemes |
Plugin | Bold Page Builder |
Version | 4.4.8 |
Comparing to | |
See all releases |
Code changes from version 4.4.7 to 4.4.8
bold-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Plugin Name: Bold Builder
|
5 |
* Description: WordPress page builder.
|
6 |
-
* Version: 4.4.
|
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.4.
|
16 |
// VERSION --------------------------------------------------------- \\
|
17 |
|
18 |
/**
|
3 |
/**
|
4 |
* Plugin Name: Bold Builder
|
5 |
* Description: WordPress page builder.
|
6 |
+
* Version: 4.4.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.4.8' );
|
16 |
// VERSION --------------------------------------------------------- \\
|
17 |
|
18 |
/**
|
content_elements/bt_bb_css_image_grid/bt_bb_css_image_grid.php
CHANGED
@@ -91,10 +91,10 @@ class bt_bb_css_image_grid extends BT_BB_Element {
|
|
91 |
if ( is_object( $image_post ) ) {
|
92 |
$data_title = $image_post->post_title;
|
93 |
}
|
94 |
-
$output .= '<div class="' . $this->shortcode . '_item ' . $tile_format . '" data-src-full="' . esc_url_raw( $img_src_full ) . '"><div class="' . $this->shortcode . '_item_inner"><div class="' . $this->shortcode . '_item_inner_image"><img src="' . esc_url_raw( $img_src ) . '" data-src-full="' . esc_url_raw( $img_src_full ) . '" title="' . esc_attr( $data_title ) . '"/></div><div class="' . $this->shortcode . '_item_inner_content"></div></div></div>';
|
95 |
$n++;
|
96 |
} else {
|
97 |
-
$output .= '<div class="' . $this->shortcode . '_item" data-hw=".75" data-src-full="' . $id . '" data-title=""><div class="' . $this->shortcode . '_item_inner" data-hw=".75" ><div class="' . $this->shortcode . '_item_inner_image"><img src="' . $id . '" data-src-full="' . $id . '" title="' . esc_attr( $data_title ) . '"/></div><div class="' . $this->shortcode . '_item_inner_content"></div></div></div>';
|
98 |
}
|
99 |
}
|
100 |
|
91 |
if ( is_object( $image_post ) ) {
|
92 |
$data_title = $image_post->post_title;
|
93 |
}
|
94 |
+
$output .= '<div class="' . $this->shortcode . '_item ' . $tile_format . '" data-src-full="' . esc_url_raw( $img_src_full ) . '"><div class="' . $this->shortcode . '_item_inner"><div class="' . $this->shortcode . '_item_inner_image"><img src="' . esc_url_raw( $img_src ) . '" data-src-full="' . esc_url_raw( $img_src_full ) . '" title="' . esc_attr( $data_title ) . '" alt="' . esc_attr( $data_title ) . '"/></div><div class="' . $this->shortcode . '_item_inner_content"></div></div></div>';
|
95 |
$n++;
|
96 |
} else {
|
97 |
+
$output .= '<div class="' . $this->shortcode . '_item" data-hw=".75" data-src-full="' . $id . '" data-title=""><div class="' . $this->shortcode . '_item_inner" data-hw=".75" ><div class="' . $this->shortcode . '_item_inner_image"><img src="' . $id . '" data-src-full="' . $id . '" title="' . esc_attr( $data_title ) . '" alt="' . esc_attr( $data_title ) . '"/></div><div class="' . $this->shortcode . '_item_inner_content"></div></div></div>';
|
98 |
}
|
99 |
}
|
100 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: boldthemes
|
3 |
Tags: wordpress page builder, page builder, visual composer, free page builder, builder, free visual composer, drag and drop page builder, visual builder, visual editor, webpage builder, webpage editor, page builder wordpress
|
4 |
Requires at least: 4.5
|
5 |
-
Tested up to: 6.
|
6 |
Stable tag: trunk
|
7 |
License: GPLv2 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -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.4.7 =
|
140 |
* Added Esc key shortcut for closing a dialog.
|
141 |
|
2 |
Contributors: boldthemes
|
3 |
Tags: wordpress page builder, page builder, visual composer, free page builder, builder, free visual composer, drag and drop page builder, visual builder, visual editor, webpage builder, webpage editor, page builder wordpress
|
4 |
Requires at least: 4.5
|
5 |
+
Tested up to: 6.1
|
6 |
Stable tag: trunk
|
7 |
License: GPLv2 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
136 |
|
137 |
== Changelog ==
|
138 |
|
139 |
+
= 4.4.8 =
|
140 |
+
* Added alt attribute to CSS Image Grid.
|
141 |
+
|
142 |
= 4.4.7 =
|
143 |
* Added Esc key shortcut for closing a dialog.
|
144 |
|