Email Subscribers & Newsletters - Version 5.3.1

Version Description

  • Fix: Media upload is not working

=

Download this release

Release Info

Developer Icegram
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 5.3.1
Comparing to
See all releases

Code changes from version 5.3.0 to 5.3.1

email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 5.3.0
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -187,7 +187,7 @@ if ( 'premium' === $ig_es_plan ) {
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
- define( 'ES_PLUGIN_VERSION', '5.3.0' );
191
  }
192
 
193
  // Plugin Folder Path.
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 5.3.1
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
+ define( 'ES_PLUGIN_VERSION', '5.3.1' );
191
  }
192
 
193
  // Plugin Folder Path.
lite/includes/classes/class-es-drag-and-drop-editor.php CHANGED
@@ -15,6 +15,11 @@ class ES_Drag_And_Drop_Editor {
15
  }
16
 
17
  public function enqueue_scripts() {
 
 
 
 
 
18
  //Only for development - this branch only
19
  //wp_register_script( 'es_editor_js', 'http://localhost:9001/main.js', array(), time(), true );
20
  wp_register_script( 'es_editor_js', ES_PLUGIN_URL . 'lite/admin/js/editor.js', array( ), ES_PLUGIN_VERSION, true );
@@ -28,6 +33,11 @@ class ES_Drag_And_Drop_Editor {
28
  * @since 4.0
29
  */
30
  public function enqueue_styles() {
 
 
 
 
 
31
  //wp_enqueue_style( 'es_editor_css', 'http://localhost:9000/main.css', array(), time(), 'all' );
32
  wp_enqueue_style( 'es_editor_css', ES_PLUGIN_URL . 'lite/admin/css/editor.css', array(), ES_PLUGIN_VERSION, 'all' );
33
  }
15
  }
16
 
17
  public function enqueue_scripts() {
18
+
19
+ if ( ! ES()->is_es_admin_screen() ) {
20
+ return;
21
+ }
22
+
23
  //Only for development - this branch only
24
  //wp_register_script( 'es_editor_js', 'http://localhost:9001/main.js', array(), time(), true );
25
  wp_register_script( 'es_editor_js', ES_PLUGIN_URL . 'lite/admin/js/editor.js', array( ), ES_PLUGIN_VERSION, true );
33
  * @since 4.0
34
  */
35
  public function enqueue_styles() {
36
+
37
+ if ( ! ES()->is_es_admin_screen() ) {
38
+ return;
39
+ }
40
+
41
  //wp_enqueue_style( 'es_editor_css', 'http://localhost:9000/main.css', array(), time(), 'all' );
42
  wp_enqueue_style( 'es_editor_css', ES_PLUGIN_URL . 'lite/admin/css/editor.css', array(), ES_PLUGIN_VERSION, 'all' );
43
  }
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
6
  Requires at least: 3.9
7
  Tested up to: 5.9.0
8
  Requires PHP: 5.6
9
- Stable tag: 5.3.0
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,13 +310,16 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 5.3.0 =
314
 
315
- * New: Added Drag and Drop editor in campaign section
316
- * Fix: Compatibility with Forminator version(1.15.9) [PRO]
317
 
318
  == Changelog ==
319
 
 
 
 
 
320
  **5.3.0 (01.02.2022)**
321
 
322
  * New: Added Drag and Drop editor in campaign section
6
  Requires at least: 3.9
7
  Tested up to: 5.9.0
8
  Requires PHP: 5.6
9
+ Stable tag: 5.3.1
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 5.3.1 =
314
 
315
+ * Fix: Media upload is not working
 
316
 
317
  == Changelog ==
318
 
319
+ **5.3.1 (01.02.2022)**
320
+
321
+ * Fix: Media upload is not working
322
+
323
  **5.3.0 (01.02.2022)**
324
 
325
  * New: Added Drag and Drop editor in campaign section