Version Description
- Fixed - The posts carousel widget navigation arrows missing.
Download this release
Release Info
Developer | livemesh |
Plugin | Livemesh SiteOrigin Widgets |
Version | 2.5.3 |
Comparing to | |
See all releases |
Code changes from version 2.5.2 to 2.5.3
admin/views/documentation.php
CHANGED
@@ -1322,6 +1322,17 @@ else {
|
|
1322 |
|
1323 |
<h2>Change Log for the Premium Version</h2>
|
1324 |
<br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1325 |
<h3>2.5.1</h3>
|
1326 |
<ul>
|
1327 |
<li>Fixed - The posts grid widget won't show up with the free version of the plugin.</li>
|
1322 |
|
1323 |
<h2>Change Log for the Premium Version</h2>
|
1324 |
<br>
|
1325 |
+
<h3>2.5.3</h3>
|
1326 |
+
<ul>
|
1327 |
+
<li>Fixed - The posts carousel widget navigation arrows missing.</li>
|
1328 |
+
</ul>
|
1329 |
+
<h3>2.5.2</h3>
|
1330 |
+
<ul>
|
1331 |
+
<li>Updated - Freemius library with a security fix. Recommended to update immediately.</li>
|
1332 |
+
<li>Fixed - Some themes can raise JS error due to jQuery $ being unavailable</li>
|
1333 |
+
<li>Fixed - Unwanted loading of scripts and CSS in pages where livemesh widgets are not used.</li>
|
1334 |
+
<li>Fixed - Error in Gallery Carousel due to invalid HTML generated with certain options.</li>
|
1335 |
+
</ul>
|
1336 |
<h3>2.5.1</h3>
|
1337 |
<ul>
|
1338 |
<li>Fixed - The posts grid widget won't show up with the free version of the plugin.</li>
|
includes/widgets/lsow-posts-carousel-widget/lsow-posts-carousel-widget.php
CHANGED
@@ -39,6 +39,14 @@ class LSOW_Posts_Carousel_Widget extends SiteOrigin_Widget {
|
|
39 |
|
40 |
$this->register_frontend_styles(
|
41 |
array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
array(
|
43 |
'lsow-slick',
|
44 |
LSOW_PLUGIN_URL . 'assets/css/slick.css',
|
39 |
|
40 |
$this->register_frontend_styles(
|
41 |
array(
|
42 |
+
|
43 |
+
array(
|
44 |
+
'lsow-icomoon',
|
45 |
+
LSOW_PLUGIN_URL . 'assets/css/icomoon.css',
|
46 |
+
array(),
|
47 |
+
LSOW_VERSION
|
48 |
+
),
|
49 |
+
|
50 |
array(
|
51 |
'lsow-slick',
|
52 |
LSOW_PLUGIN_URL . 'assets/css/slick.css',
|
livemesh-siteorigin-widgets.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.
|
12 |
* Text Domain: livemesh-so-widgets
|
13 |
* Domain Path: languages
|
14 |
*
|
@@ -34,7 +34,7 @@ if ( !defined( 'ABSPATH' ) ) {
|
|
34 |
// Ensure the free version is deactivated if premium is running
|
35 |
|
36 |
if ( !function_exists( 'lsow_fs' ) ) {
|
37 |
-
define( 'LSOW_VERSION', '2.5.
|
38 |
// Plugin Folder Path
|
39 |
define( 'LSOW_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
40 |
// Plugin Folder URL
|
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-so-widgets
|
13 |
* Domain Path: languages
|
14 |
*
|
34 |
// Ensure the free version is deactivated if premium is running
|
35 |
|
36 |
if ( !function_exists( 'lsow_fs' ) ) {
|
37 |
+
define( 'LSOW_VERSION', '2.5.3' );
|
38 |
// Plugin Folder Path
|
39 |
define( 'LSOW_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
40 |
// Plugin Folder URL
|
plugin.php
CHANGED
@@ -43,7 +43,7 @@ if ( !class_exists( 'Livemesh_SiteOrigin_Widgets' ) ) {
|
|
43 |
public function __clone()
|
44 |
{
|
45 |
// Cloning instances of the class is forbidden
|
46 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-so-widgets' ), '2.5.
|
47 |
}
|
48 |
|
49 |
/**
|
@@ -53,7 +53,7 @@ if ( !class_exists( 'Livemesh_SiteOrigin_Widgets' ) ) {
|
|
53 |
public function __wakeup()
|
54 |
{
|
55 |
// Unserializing instances of the class is forbidden
|
56 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-so-widgets' ), '2.5.
|
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’ huh?', 'livemesh-so-widgets' ), '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’ huh?', 'livemesh-so-widgets' ), '2.5.3' );
|
57 |
}
|
58 |
|
59 |
private function setup_debug_constants()
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Plugin URI: https://www.livemeshthemes.com/siteorigin-widgets
|
|
4 |
Contributors: livemesh, freemius
|
5 |
Tags: widget, siteorigin, siteorigin widgets bundle, siteorigin page builder, siteorigin widgets, grid, gallery, video background, portfolio, carousel, shortcode, tabs, admin, plugin, page
|
6 |
Requires at least: 4.5
|
7 |
-
Tested up to: 5.
|
8 |
-
Stable Tag: 2.5.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -122,7 +122,11 @@ Pls install and activate the <a href="https://wordpress.org/plugins/portfolio-po
|
|
122 |
|
123 |
== Changelog ==
|
124 |
|
|
|
|
|
|
|
125 |
= 2.5.2 =
|
|
|
126 |
* Fixed - Unwanted loading of scripts and CSS in pages where livemesh widgets are not used
|
127 |
* Fixed - Some themes can raise JS error due to jQuery $ being unavailable
|
128 |
|
4 |
Contributors: livemesh, freemius
|
5 |
Tags: widget, siteorigin, siteorigin widgets bundle, siteorigin page builder, siteorigin widgets, grid, gallery, video background, portfolio, carousel, shortcode, tabs, admin, 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
|
11 |
|
122 |
|
123 |
== Changelog ==
|
124 |
|
125 |
+
= 2.5.3 =
|
126 |
+
* Fixed - The posts carousel widget navigation arrows missing.
|
127 |
+
|
128 |
= 2.5.2 =
|
129 |
+
* Updated - Freemius library with a security fix. Recommended to update immediately.
|
130 |
* Fixed - Unwanted loading of scripts and CSS in pages where livemesh widgets are not used
|
131 |
* Fixed - Some themes can raise JS error due to jQuery $ being unavailable
|
132 |
|