Bold Page Builder - Version 4.4.5

Version Description

  • Minor bug fixes.
Download this release

Release Info

Developer boldthemes
Plugin Icon 128x128 Bold Page Builder
Version 4.4.5
Comparing to
See all releases

Code changes from version 4.4.4 to 4.4.5

add-section-template.php CHANGED
@@ -6,10 +6,10 @@ wp_head(); ?>
6
 
7
  <?php wp_body_open();
8
 
9
- $sections = file_get_contents( get_template_directory() . '/basic-sections.txt' );
10
 
11
  if ( ! $sections ) {
12
- $sections = file_get_contents( get_stylesheet_directory() . '/basic-sections.txt' );
13
  }
14
 
15
  if ( ! $sections ) {
6
 
7
  <?php wp_body_open();
8
 
9
+ $sections = @file_get_contents( get_template_directory() . '/basic-sections.txt' );
10
 
11
  if ( ! $sections ) {
12
+ $sections = @file_get_contents( get_stylesheet_directory() . '/basic-sections.txt' );
13
  }
14
 
15
  if ( ! $sections ) {
bold-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: Bold Builder
5
  * Description: WordPress page builder.
6
- * Version: 4.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.4' );
16
  // VERSION --------------------------------------------------------- \\
17
 
18
  /**
3
  /**
4
  * Plugin Name: Bold Builder
5
  * Description: WordPress page builder.
6
+ * Version: 4.4.5
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.5' );
16
  // VERSION --------------------------------------------------------- \\
17
 
18
  /**
content_elements/bt_bb_countdown/bt_bb_countdown.php CHANGED
@@ -101,7 +101,7 @@ class bt_bb_countdown extends BT_BB_Element {
101
  bt_bb_map( $this->shortcode, array( 'name' => esc_html__( 'Countdown', 'bold-builder' ), 'description' => esc_html__( 'Animated countdown', 'bold-builder' ),
102
  'icon' => $this->prefix_backend . 'icon' . '_' . $this->shortcode,
103
  'params' => array(
104
- array( 'param_name' => 'datetime', 'type' => 'textfield', 'heading' => esc_html__( 'Target date and time', 'bold-builder' ), 'description' => esc_html__( 'YY-mm-dd HH:mm:ss, e.g. 2017-02-22 22:45:00' ), 'preview' => true ),
105
  array( 'param_name' => 'size', 'type' => 'dropdown', 'heading' => esc_html__( 'Size', 'bold-builder' ), 'preview' => true, 'responsive_override' => true,
106
  'value' => array(
107
  esc_html__( 'Normal', 'bold-builder' ) => 'normal',
101
  bt_bb_map( $this->shortcode, array( 'name' => esc_html__( 'Countdown', 'bold-builder' ), 'description' => esc_html__( 'Animated countdown', 'bold-builder' ),
102
  'icon' => $this->prefix_backend . 'icon' . '_' . $this->shortcode,
103
  'params' => array(
104
+ array( 'param_name' => 'datetime', 'type' => 'textfield', 'heading' => esc_html__( 'Target date and time', 'bold-builder' ), 'description' => esc_html__( 'YY-mm-dd HH:mm:ss, e.g. 2024-02-22 22:45:00' ), 'preview' => true ),
105
  array( 'param_name' => 'size', 'type' => 'dropdown', 'heading' => esc_html__( 'Size', 'bold-builder' ), 'preview' => true, 'responsive_override' => true,
106
  'value' => array(
107
  esc_html__( 'Normal', 'bold-builder' ) => 'normal',
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.4.4 =
140
  * Added Clone option on front end.
141
 
136
 
137
  == Changelog ==
138
 
139
+ = 4.4.5 =
140
+ * Minor bug fixes.
141
+
142
  = 4.4.4 =
143
  * Added Clone option on front end.
144