Addons for WPBakery Page Builder - Version 2.5.3

Version Description

  • Fixed - Cannot edit the slides of the testimonial slider.
  • Fixed - Some icons missing in the backend editor.
Download this release

Release Info

Developer livemesh
Plugin Icon 128x128 Addons for WPBakery Page Builder
Version 2.5.3
Comparing to
See all releases

Code changes from version 2.5.2 to 2.5.3

addons-for-visual-composer.php CHANGED
@@ -8,7 +8,7 @@
8
  * Author URI: https://www.livemeshthemes.com/
9
  * License: GPL3
10
  * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
11
- * Version: 2.5.2
12
  * Text Domain: livemesh-vc-addons
13
  * Domain Path: languages
14
  *
@@ -36,7 +36,7 @@ if ( !defined( 'ABSPATH' ) ) {
36
 
37
  if ( !function_exists( 'lvca_fs' ) ) {
38
  // Plugin version
39
- define( 'LVCA_VERSION', '2.5.2' );
40
  // Plugin Root File
41
  define( 'LVCA_PLUGIN_FILE', __FILE__ );
42
  // Plugin Folder Path
8
  * Author URI: https://www.livemeshthemes.com/
9
  * License: GPL3
10
  * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
11
+ * Version: 2.5.3
12
  * Text Domain: livemesh-vc-addons
13
  * Domain Path: languages
14
  *
36
 
37
  if ( !function_exists( 'lvca_fs' ) ) {
38
  // Plugin version
39
+ define( 'LVCA_VERSION', '2.5.3' );
40
  // Plugin Root File
41
  define( 'LVCA_PLUGIN_FILE', __FILE__ );
42
  // Plugin Folder Path
admin/views/documentation.php CHANGED
@@ -1236,9 +1236,16 @@ else {
1236
 
1237
  <h2>Change Log for the Premium Version</h2>
1238
  <br>
 
 
 
 
 
 
 
1239
  <h3>2.5.2</h3>
1240
  <ul>
1241
- <li>Updated - Freemius library to address security vulnerability reported. Recommended to update immediately.</li>
1242
  <li>Fixed - Some themes can raise JS error due to jQuery $ being unavailable.</li>
1243
  </ul>
1244
  <h3>2.5.1</h3>
1236
 
1237
  <h2>Change Log for the Premium Version</h2>
1238
  <br>
1239
+ <h3>2.5.3</h3>
1240
+ <ul>
1241
+ <li>Added - Thumbnails support for the lightbox module of Posts Grid, Posts Block, Image/Video Gallery and Gallery Carousel.</li>
1242
+ <li>Fixed - Cannot edit the slides of testimonial slider.</li>
1243
+ <li>Fixed - Some icons missing in the backend editor.</li>
1244
+ <li>Updated - Fancybox scripts to 3.5.7 release.</li>
1245
+ </ul>
1246
  <h3>2.5.2</h3>
1247
  <ul>
1248
+ <li>Updated - Freemius library with a security fix. Recommended to update immediately.</li>
1249
  <li>Fixed - Some themes can raise JS error due to jQuery $ being unavailable.</li>
1250
  </ul>
1251
  <h3>2.5.1</h3>
includes/addons/testimonials-slider/class-lvca-testimonials-slider.php CHANGED
@@ -194,9 +194,6 @@ class LVCA_Testimonials_Slider {
194
 
195
  function map_child_vc_element() {
196
  if (function_exists("vc_map")) {
197
-
198
- $testimonial_params = vc_map_integrate_shortcode('lvca_testimonial', '', __('Testimonials', 'livemesh-vc-addons'));
199
-
200
  vc_map(array(
201
  "name" => __("Testimonial Slide", "livemesh-vc-addons"),
202
  "base" => "lvca_testimonial_slide",
@@ -204,7 +201,42 @@ class LVCA_Testimonials_Slider {
204
  "as_child" => array('only' => 'lvca_testimonials_slider'), // Use only|except attributes to limit parent (separate multiple values with comma)
205
  "icon" => 'icon-lvca-testimonials-slide',
206
  "category" => __("Livemesh Addons", "livemesh-vc-addons"),
207
- "params" => $testimonial_params
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  )
209
 
210
  );
194
 
195
  function map_child_vc_element() {
196
  if (function_exists("vc_map")) {
 
 
 
197
  vc_map(array(
198
  "name" => __("Testimonial Slide", "livemesh-vc-addons"),
199
  "base" => "lvca_testimonial_slide",
201
  "as_child" => array('only' => 'lvca_testimonials_slider'), // Use only|except attributes to limit parent (separate multiple values with comma)
202
  "icon" => 'icon-lvca-testimonials-slide',
203
  "category" => __("Livemesh Addons", "livemesh-vc-addons"),
204
+ "params" => array(
205
+ // add params same as with any other content element
206
+ array(
207
+ 'type' => 'textfield',
208
+ 'param_name' => 'author',
209
+ "admin_label" => true,
210
+ 'heading' => __('Name', 'livemesh - vc - addons'),
211
+ 'description' => __('The author of the testimonial', 'livemesh - vc - addons'),
212
+ ),
213
+ array(
214
+ 'type' => 'textfield',
215
+ 'param_name' => 'credentials',
216
+ 'heading' => __('Author Details', 'livemesh - vc - addons'),
217
+ 'description' => __('The details of the author like company name, position held, company URL etc . ', 'livemesh - vc - addons'),
218
+ ),
219
+
220
+ array(
221
+ 'type' => 'attach_image',
222
+ 'param_name' => 'author_image',
223
+ 'heading' => __('Author Image', 'livemesh - vc - addons'),
224
+ ),
225
+ array(
226
+ 'type' => 'textarea_html',
227
+ 'param_name' => 'content',
228
+ 'heading' => __('Text', 'livemesh - vc - addons'),
229
+ 'description' => __('What your client / customer has to say', 'livemesh - vc - addons'),
230
+ ),
231
+ array(
232
+ "type" => "dropdown",
233
+ "param_name" => "animation",
234
+ "heading" => __("Choose Animation Type", "livemesh-vc-addons"),
235
+ 'value' => lvca_get_animation_options(),
236
+ 'std' => 'none',
237
+ 'group' => __('Settings', 'livemesh - vc - addons')
238
+ ),
239
+ )
240
  )
241
 
242
  );
plugin.php CHANGED
@@ -43,7 +43,7 @@ if ( !class_exists( 'Livemesh_VC_Addons' ) ) {
43
  public function __clone()
44
  {
45
  // Cloning instances of the class is forbidden
46
- _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'livemesh-vc-addons' ), '2.5.2' );
47
  }
48
 
49
  /**
@@ -53,7 +53,7 @@ if ( !class_exists( 'Livemesh_VC_Addons' ) ) {
53
  public function __wakeup()
54
  {
55
  // Unserializing instances of the class is forbidden
56
- _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'livemesh-vc-addons' ), '2.5.2' );
57
  }
58
 
59
  private function setup_debug_constants()
43
  public function __clone()
44
  {
45
  // Cloning instances of the class is forbidden
46
+ _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'livemesh-vc-addons' ), '2.5.3' );
47
  }
48
 
49
  /**
53
  public function __wakeup()
54
  {
55
  // Unserializing instances of the class is forbidden
56
+ _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'livemesh-vc-addons' ), '2.5.3' );
57
  }
58
 
59
  private function setup_debug_constants()
readme.txt CHANGED
@@ -5,7 +5,7 @@ Contributors: livemesh, freemius
5
  Tags: wpbakery page builder, wpbakery page builder addons, wpbakery, wpbakery page builder extensions, visual composer, visual composer addons, visual composer extensions, page builder, portfolio, carousel, post, posts, shortcodes, tabs, plugin, page
6
  Requires at least: 4.5
7
  Tested up to: 5.2
8
- Stable Tag: 2.5.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html-func
11
 
@@ -103,6 +103,10 @@ Pls install and activate the <a href="https://wordpress.org/plugins/portfolio-po
103
 
104
  == Changelog ==
105
 
 
 
 
 
106
  = 2.5.2 =
107
  * Updated - Freemius library with a security fix. Recommended to update immediately.
108
  * Fixed - Some themes can raise JS error due to jQuery $ being unavailable.
5
  Tags: wpbakery page builder, wpbakery page builder addons, wpbakery, wpbakery page builder extensions, visual composer, visual composer addons, visual composer extensions, page builder, portfolio, carousel, post, posts, shortcodes, tabs, plugin, page
6
  Requires at least: 4.5
7
  Tested up to: 5.2
8
+ Stable Tag: 2.5.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html-func
11
 
103
 
104
  == Changelog ==
105
 
106
+ = 2.5.3 =
107
+ * Fixed - Cannot edit the slides of the testimonial slider.
108
+ * Fixed - Some icons missing in the backend editor.
109
+
110
  = 2.5.2 =
111
  * Updated - Freemius library with a security fix. Recommended to update immediately.
112
  * Fixed - Some themes can raise JS error due to jQuery $ being unavailable.