Version Description
- Fix: Premium Carousel slides on Tabs/Mobiles options bug.
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 2.2.5 |
Comparing to | |
See all releases |
Code changes from version 2.2.4 to 2.2.5
- admin/assets/admin.css +20 -1
- admin/settings-page.php +3 -3
- assets/js/premium-addons.js +1 -1
- premium-addons-for-elementor.php +3 -3
- readme.txt +5 -1
admin/assets/admin.css
CHANGED
@@ -320,4 +320,23 @@ input:checked + .slider:before {
|
|
320 |
.pa-beta-row .pa-beta-desc{
|
321 |
font-style: italic;
|
322 |
margin-top: 4px;
|
323 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
.pa-beta-row .pa-beta-desc{
|
321 |
font-style: italic;
|
322 |
margin-top: 4px;
|
323 |
+
}
|
324 |
+
.pa-sys-info-tab {
|
325 |
+
background: #f7f7f7;
|
326 |
+
margin: 8px;
|
327 |
+
border: 2px solid #ddd;
|
328 |
+
border-radius: 3px;
|
329 |
+
padding: 0;
|
330 |
+
}
|
331 |
+
.pa-system-info-container {
|
332 |
+
padding: 10px;
|
333 |
+
}
|
334 |
+
.pa-sys-info-tab .pa-sys-info-title {
|
335 |
+
margin: 0;
|
336 |
+
margin-bottom: 0px;
|
337 |
+
padding: 10px;
|
338 |
+
border-bottom: 2px solid #ddd;
|
339 |
+
background: #fff;
|
340 |
+
margin-bottom: 10px;
|
341 |
+
font-weight: 500;
|
342 |
+
}
|
admin/settings-page.php
CHANGED
@@ -373,7 +373,7 @@ class PA_admin_settings {
|
|
373 |
|
374 |
<tr class="pa-roll-row">
|
375 |
<th>Rollback Version</th>
|
376 |
-
<td><div><?php echo sprintf( '<a target="_blank" href="%s" class="button pa-btn pa-rollback-button elementor-button-spinner">Reinstall Version 2.2.
|
377 |
</tr>
|
378 |
<tr>
|
379 |
<th><h4 class="pa-beta-test">Become a Beta Tester</h4><span class="pa-beta-test-span">Turn-on Beta Tester, to get notified when a new beta version of Premium Addons for Elementor. The Beta version will not install automatically. You always have the option to ignore it.</span></th>
|
@@ -389,10 +389,10 @@ class PA_admin_settings {
|
|
389 |
|
390 |
</div>
|
391 |
</div>
|
392 |
-
<div id="pa-system" class="pa-settings-tab">
|
393 |
<div class="pa-row">
|
394 |
|
395 |
-
<h3><?php echo esc_html__('System setup information useful for debugging purposes.','premium-addons-for-elementor');?></h3>
|
396 |
<div class="pa-system-info-container">
|
397 |
<?php
|
398 |
echo nl2br(pa_get_sysinfo());
|
373 |
|
374 |
<tr class="pa-roll-row">
|
375 |
<th>Rollback Version</th>
|
376 |
+
<td><div><?php echo sprintf( '<a target="_blank" href="%s" class="button pa-btn pa-rollback-button elementor-button-spinner">Reinstall Version 2.2.4</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ) ); ?> </div><p class="pa-roll-desc"><span>Warning: Please backup your database before making the rollback.</span></p></td>
|
377 |
</tr>
|
378 |
<tr>
|
379 |
<th><h4 class="pa-beta-test">Become a Beta Tester</h4><span class="pa-beta-test-span">Turn-on Beta Tester, to get notified when a new beta version of Premium Addons for Elementor. The Beta version will not install automatically. You always have the option to ignore it.</span></th>
|
389 |
|
390 |
</div>
|
391 |
</div>
|
392 |
+
<div id="pa-system" class="pa-settings-tab pa-sys-info-tab">
|
393 |
<div class="pa-row">
|
394 |
|
395 |
+
<h3 class="pa-sys-info-title"><?php echo esc_html__('System setup information useful for debugging purposes.','premium-addons-for-elementor');?></h3>
|
396 |
<div class="pa-system-info-container">
|
397 |
<?php
|
398 |
echo nl2br(pa_get_sysinfo());
|
assets/js/premium-addons.js
CHANGED
@@ -276,7 +276,7 @@
|
|
276 |
vertical : carouselSettings['vertical'],
|
277 |
slidesToScroll : carouselSettings['slidesToScroll'],
|
278 |
slidesToShow : carouselSettings['slidesToShow'],
|
279 |
-
responsive : carouselSettings['
|
280 |
infinite : carouselSettings['infinite'],
|
281 |
speed : carouselSettings['speed'],
|
282 |
autoplay : carouselSettings['autoplay'],
|
276 |
vertical : carouselSettings['vertical'],
|
277 |
slidesToScroll : carouselSettings['slidesToScroll'],
|
278 |
slidesToShow : carouselSettings['slidesToShow'],
|
279 |
+
responsive : [{breakpoint: 1025,settings: {slidesToShow: carouselSettings['slidesDesk'],slidesToScroll: carouselSettings['slidesToScroll']}},{breakpoint: 769,settings: {slidesToShow: carouselSettings['slidesTab'],slidesToScroll: carouselSettings['slidesTab']}},{breakpoint: 481,settings: {slidesToShow: carouselSettings['slidesMob'],slidesToScroll: carouselSettings['slidesMob']}}],
|
280 |
infinite : carouselSettings['infinite'],
|
281 |
speed : carouselSettings['speed'],
|
282 |
autoplay : carouselSettings['autoplay'],
|
premium-addons-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 20 premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
-
Version: 2.2.
|
7 |
Author: Leap13
|
8 |
Author URI: http://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
@@ -22,12 +22,12 @@ if( !function_exists('add_action') ) {
|
|
22 |
|
23 |
if( !defined( 'ABSPATH' ) ) exit; // No access of directly access
|
24 |
|
25 |
-
define( 'PREMIUM_ADDONS_VERSION', '2.2.
|
26 |
define( 'PREMIUM_ADDONS_URL', plugins_url('/', __FILE__ ) );
|
27 |
define( 'PREMIUM_ADDONS_PATH', plugin_dir_path( __FILE__ ) );
|
28 |
define( 'PREMIUM_ADDONS_FILE', __FILE__ );
|
29 |
define( 'PREMIUM_ADDONS_BASENAME', plugin_basename(__FILE__));
|
30 |
-
define( 'PREMIUM_ADDONS_STABLE_VERSION', '2.2.
|
31 |
|
32 |
|
33 |
/**
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 20 premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
+
Version: 2.2.5
|
7 |
Author: Leap13
|
8 |
Author URI: http://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
22 |
|
23 |
if( !defined( 'ABSPATH' ) ) exit; // No access of directly access
|
24 |
|
25 |
+
define( 'PREMIUM_ADDONS_VERSION', '2.2.5' );
|
26 |
define( 'PREMIUM_ADDONS_URL', plugins_url('/', __FILE__ ) );
|
27 |
define( 'PREMIUM_ADDONS_PATH', plugin_dir_path( __FILE__ ) );
|
28 |
define( 'PREMIUM_ADDONS_FILE', __FILE__ );
|
29 |
define( 'PREMIUM_ADDONS_BASENAME', plugin_basename(__FILE__));
|
30 |
+
define( 'PREMIUM_ADDONS_STABLE_VERSION', '2.2.4');
|
31 |
|
32 |
|
33 |
/**
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: http://premiumaddons.com
|
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.9.5
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable tag: 2.2.
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
@@ -99,6 +99,10 @@ Premium Addons for Elementor is light weight and we also gave you the control to
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
|
|
102 |
= 2.2.4 =
|
103 |
|
104 |
- Fix: Premium Google Maps bug.
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.9.5
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable tag: 2.2.5
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
+
= 2.2.5 =
|
103 |
+
|
104 |
+
- Fix: Premium Carousel slides on Tabs/Mobiles options bug.
|
105 |
+
|
106 |
= 2.2.4 =
|
107 |
|
108 |
- Fix: Premium Google Maps bug.
|