Page Builder: PageLayer – Drag and Drop website builder - Version 1.2.9

Version Description

(September 23, 2020) = * [Bug-Fix] The image box and icon box widget content lines were broken with characters. This is fixed. * [Bug-Fix] In certain cases the animation heading widget was not rendering properly after last version. This is fixed.

Download this release

Release Info

Developer pagelayer
Plugin Icon 128x128 Page Builder: PageLayer – Drag and Drop website builder
Version 1.2.9
Comparing to
See all releases

Code changes from version 1.2.8 to 1.2.9

Files changed (5) hide show
  1. css/pagelayer-frontend.css +5 -5
  2. init.php +1 -1
  3. js/widgets.js +2 -2
  4. pagelayer.php +1 -1
  5. readme.txt +6 -3
css/pagelayer-frontend.css CHANGED
@@ -335,7 +335,7 @@ width:100%;
335
  }
336
 
337
  .pagelayer-service-text{
338
- word-break:break-all;
339
  }
340
 
341
  .pagelayer-service-align-left{
@@ -3841,7 +3841,7 @@ display: none;
3841
  -webkit-text-fill-color: transparent;
3842
  }
3843
 
3844
- .pagelayer-heading-rotating p{
3845
  display: inline-block;
3846
  }
3847
 
@@ -4210,7 +4210,7 @@ display: inline-block;
4210
  }
4211
 
4212
  /*** xloading-bar ***/
4213
- .pagelayer-aheading-loading-bar p {
4214
  display: inline-block;
4215
  }
4216
  .pagelayer-aheading-loading-bar .pagelayer-words-wrapper {
@@ -4249,7 +4249,7 @@ display: inline-block;
4249
  }
4250
 
4251
  /*** xslide ***/
4252
- .pagelayer-aheading-slide p {
4253
  display: inline-block;
4254
  }
4255
  .pagelayer-aheading-slide .pagelayer-words-wrapper {
@@ -4383,7 +4383,7 @@ display: inline-block;
4383
  }
4384
 
4385
  /*** xclip ***/
4386
- .pagelayer-aheading-clip p {
4387
  display: inline-block;
4388
  }
4389
  .pagelayer-aheading-clip .pagelayer-words-wrapper {
335
  }
336
 
337
  .pagelayer-service-text{
338
+ word-break:break-word;
339
  }
340
 
341
  .pagelayer-service-align-left{
3841
  -webkit-text-fill-color: transparent;
3842
  }
3843
 
3844
+ .pagelayer-heading-rotating .pagelayer-animated-heading{
3845
  display: inline-block;
3846
  }
3847
 
4210
  }
4211
 
4212
  /*** xloading-bar ***/
4213
+ .pagelayer-aheading-loading-bar .pagelayer-animated-heading {
4214
  display: inline-block;
4215
  }
4216
  .pagelayer-aheading-loading-bar .pagelayer-words-wrapper {
4249
  }
4250
 
4251
  /*** xslide ***/
4252
+ .pagelayer-aheading-slide .pagelayer-animated-heading {
4253
  display: inline-block;
4254
  }
4255
  .pagelayer-aheading-slide .pagelayer-words-wrapper {
4383
  }
4384
 
4385
  /*** xclip ***/
4386
+ .pagelayer-aheading-clip .pagelayer-animated-heading {
4387
  display: inline-block;
4388
  }
4389
  .pagelayer-aheading-clip .pagelayer-words-wrapper {
init.php CHANGED
@@ -5,7 +5,7 @@ if (!defined('ABSPATH')) exit;
5
 
6
  define('PAGELAYER_BASE', plugin_basename(PAGELAYER_FILE));
7
  define('PAGELAYER_PRO_BASE', 'pagelayer-pro/pagelayer-pro.php');
8
- define('PAGELAYER_VERSION', '1.2.8');
9
  define('PAGELAYER_DIR', dirname(PAGELAYER_FILE));
10
  define('PAGELAYER_SLUG', 'pagelayer');
11
  define('PAGELAYER_URL', plugins_url('', PAGELAYER_FILE));
5
 
6
  define('PAGELAYER_BASE', plugin_basename(PAGELAYER_FILE));
7
  define('PAGELAYER_PRO_BASE', 'pagelayer-pro/pagelayer-pro.php');
8
+ define('PAGELAYER_VERSION', '1.2.9');
9
  define('PAGELAYER_DIR', dirname(PAGELAYER_FILE));
10
  define('PAGELAYER_SLUG', 'pagelayer');
11
  define('PAGELAYER_URL', plugins_url('', PAGELAYER_FILE));
js/widgets.js CHANGED
@@ -1123,7 +1123,7 @@ function pagelayer_render_pl_anim_heading(el){
1123
  var rotate_text = '';
1124
  rotate_text = el.atts['rotate_text'].split(',');
1125
 
1126
- el.atts['rotate_html'] += '<p class="pagelayer-animated-heading pagelayer-rotating-text pagelayer-words-wrapper">';
1127
 
1128
  jQuery.each(rotate_text, function(i){
1129
  el.atts['rotate_html'] += '<span';
@@ -1133,7 +1133,7 @@ function pagelayer_render_pl_anim_heading(el){
1133
  el.atts['rotate_html'] += '>' + rotate_text[i] + '</span>';
1134
  });
1135
 
1136
- el.atts['rotate_html'] += '</p>';
1137
 
1138
  }
1139
 
1123
  var rotate_text = '';
1124
  rotate_text = el.atts['rotate_text'].split(',');
1125
 
1126
+ el.atts['rotate_html'] += '<div class="pagelayer-animated-heading pagelayer-rotating-text pagelayer-words-wrapper">';
1127
 
1128
  jQuery.each(rotate_text, function(i){
1129
  el.atts['rotate_html'] += '<span';
1133
  el.atts['rotate_html'] += '>' + rotate_text[i] + '</span>';
1134
  });
1135
 
1136
+ el.atts['rotate_html'] += '</div>';
1137
 
1138
  }
1139
 
pagelayer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: PageLayer
4
  Plugin URI: http://wordpress.org/plugins/pagelayer/
5
  Description: PageLayer is a WordPress page builder plugin. Its very easy to use and very light on the browser.
6
- Version: 1.2.8
7
  Author: Pagelayer Team
8
  Author URI: https://pagelayer.com/
9
  License: LGPL v2.1
3
  Plugin Name: PageLayer
4
  Plugin URI: http://wordpress.org/plugins/pagelayer/
5
  Description: PageLayer is a WordPress page builder plugin. Its very easy to use and very light on the browser.
6
+ Version: 1.2.9
7
  Author: Pagelayer Team
8
  Author URI: https://pagelayer.com/
9
  License: LGPL v2.1
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: page builder, editor, landing page, drag-and-drop, pagelayer, form-builder
4
  Requires at least: 4.7
5
  Tested up to: 5.5
6
  Requires PHP: 5.5
7
- Stable tag: 1.2.8
8
  License: LGPL v2.1
9
  License URI: http://www.gnu.org/licenses/lgpl-2.1.html
10
 
@@ -109,6 +109,10 @@ Do you have questions related to PageLayer ? Use the following links :
109
 
110
  == Changelog ==
111
 
 
 
 
 
112
  = 1.2.8 (September 18, 2020) =
113
  * [Task] Adding support for block formats in Pagelayer. This is complete but due to compatibility, we are still storing in shortcodes which will change over the next few versions.
114
  * [Improvement] The CSS rendering method has been further improved and will reduce your page size.
@@ -116,7 +120,6 @@ Do you have questions related to PageLayer ? Use the following links :
116
  * [Bug-Fix] In the Image Hotspot widget "Tooltip Display" was not working properly. This is fixed.
117
  * [Bug-Fix] If the animation heading widget contains the <p> tag then it was not rendering properly. This is fixed.
118
 
119
-
120
  = 1.2.7 (September 15, 2020) =
121
  * [Improvement] Description added in Phone, Email, Address, Copyright widgets.
122
  * [Improvement] For the Modal Widget, clicking on the grey background will close the Modal box.
@@ -126,7 +129,7 @@ Do you have questions related to PageLayer ? Use the following links :
126
  * [Bug-Fix] Shadow setting was not hiding even after changing the animation type to rotating. This is fixed.
127
  * [Bug-Fix] Rotate-2, Rotate-3 and Scale effects in animated heading was not working after refresh. This is fixed.
128
  * [Bug-Fix] Adding many Animated Headings in a page was not working properly. This is fixed.
129
- * [Bug-Fix] Image Hotspot widget animation was not working when URL was added. This is fixed.
130
  * [Bug-Fix] Image Hotspot widget tooltip with display on click was not working properly. This is fixed.
131
  * [Bug-Fix] Facebook Embed widget width was not responsive. This is fixed.
132
  * [Bug-Fix] Single word content in Icon Box widget was not splitting, due to this the text was crossing the border of the widget. This is fixed.
4
  Requires at least: 4.7
5
  Tested up to: 5.5
6
  Requires PHP: 5.5
7
+ Stable tag: 1.2.9
8
  License: LGPL v2.1
9
  License URI: http://www.gnu.org/licenses/lgpl-2.1.html
10
 
109
 
110
  == Changelog ==
111
 
112
+ = 1.2.9 (September 23, 2020) =
113
+ * [Bug-Fix] The image box and icon box widget content lines were broken with characters. This is fixed.
114
+ * [Bug-Fix] In certain cases the animation heading widget was not rendering properly after last version. This is fixed.
115
+
116
  = 1.2.8 (September 18, 2020) =
117
  * [Task] Adding support for block formats in Pagelayer. This is complete but due to compatibility, we are still storing in shortcodes which will change over the next few versions.
118
  * [Improvement] The CSS rendering method has been further improved and will reduce your page size.
120
  * [Bug-Fix] In the Image Hotspot widget "Tooltip Display" was not working properly. This is fixed.
121
  * [Bug-Fix] If the animation heading widget contains the <p> tag then it was not rendering properly. This is fixed.
122
 
 
123
  = 1.2.7 (September 15, 2020) =
124
  * [Improvement] Description added in Phone, Email, Address, Copyright widgets.
125
  * [Improvement] For the Modal Widget, clicking on the grey background will close the Modal box.
129
  * [Bug-Fix] Shadow setting was not hiding even after changing the animation type to rotating. This is fixed.
130
  * [Bug-Fix] Rotate-2, Rotate-3 and Scale effects in animated heading was not working after refresh. This is fixed.
131
  * [Bug-Fix] Adding many Animated Headings in a page was not working properly. This is fixed.
132
+ * [Bug-Fix] Image Hotspot widget animation was not working. This is fixed.
133
  * [Bug-Fix] Image Hotspot widget tooltip with display on click was not working properly. This is fixed.
134
  * [Bug-Fix] Facebook Embed widget width was not responsive. This is fixed.
135
  * [Bug-Fix] Single word content in Icon Box widget was not splitting, due to this the text was crossing the border of the widget. This is fixed.