Version Description
- Fixed: Settings Page Conflict.
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 1.09 |
Comparing to | |
See all releases |
Code changes from version 1.08 to 1.09
- admin/assets/admin.js +1 -1
- admin/settings-page.php +1 -1
- premium-addons.php +1 -1
- readme.txt +5 -0
admin/assets/admin.js
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
url: settings.ajaxurl,
|
26 |
type: 'post',
|
27 |
data: {
|
28 |
-
action: '
|
29 |
fields: $( 'form#pa-settings' ).serialize(),
|
30 |
},
|
31 |
success: function( response ) {
|
25 |
url: settings.ajaxurl,
|
26 |
type: 'post',
|
27 |
data: {
|
28 |
+
action: 'pa_save_admin_addons_settings',
|
29 |
fields: $( 'form#pa-settings' ).serialize(),
|
30 |
},
|
31 |
success: function( response ) {
|
admin/settings-page.php
CHANGED
@@ -16,7 +16,7 @@ class PA_admin_settings {
|
|
16 |
public function __construct() {
|
17 |
add_action( 'admin_menu', array( $this,'pa_admin_menu') );
|
18 |
add_action('init', array( $this, 'pa_admin_page_scripts' ) );
|
19 |
-
add_action( '
|
20 |
}
|
21 |
|
22 |
public function pa_admin_page_scripts () {
|
16 |
public function __construct() {
|
17 |
add_action( 'admin_menu', array( $this,'pa_admin_menu') );
|
18 |
add_action('init', array( $this, 'pa_admin_page_scripts' ) );
|
19 |
+
add_action( 'wp_ajax_pa_save_admin_addons_settings', array( $this, 'pa_save_settings_with_ajax' ) );
|
20 |
}
|
21 |
|
22 |
public function pa_admin_page_scripts () {
|
premium-addons.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: This Plugin Includes Elementor Page Builder’s Premium Addon Elements.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
-
Version: 1.
|
7 |
Author: Leap13
|
8 |
Author URI: http://leap13.com/
|
9 |
Text Domain: premium-addons-leap13
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: This Plugin Includes Elementor Page Builder’s Premium Addon Elements.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
+
Version: 1.09
|
7 |
Author: Leap13
|
8 |
Author URI: http://leap13.com/
|
9 |
Text Domain: premium-addons-leap13
|
readme.txt
CHANGED
@@ -68,6 +68,11 @@ Yes it will work with any WordPress theme as long as you are using Elementor as
|
|
68 |
Premium Addons for Elementor is light weight and we also gave you the control to enable only the elements you actually use on your website for faster performance.
|
69 |
|
70 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
71 |
= 1.08 =
|
72 |
|
73 |
- Few minor bug fixes and improvements.
|
68 |
Premium Addons for Elementor is light weight and we also gave you the control to enable only the elements you actually use on your website for faster performance.
|
69 |
|
70 |
== Changelog ==
|
71 |
+
|
72 |
+
= 1.09 =
|
73 |
+
|
74 |
+
- Fixed: Settings Page Conflict.
|
75 |
+
|
76 |
= 1.08 =
|
77 |
|
78 |
- Few minor bug fixes and improvements.
|