Shortcodes and extra features for Phlox theme - Version 2.7.8

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Shortcodes and extra features for Phlox theme
Version 2.7.8
Comparing to
See all releases

Code changes from version 2.7.7 to 2.7.8

README.txt CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, fram
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.6.0
10
- Stable tag: 2.7.7
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.6.0
10
+ Stable tag: 2.7.8
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
admin/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.7.7 (2021-01)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
1
+ /*! Phlox Core Plugin - v2.7.8 (2021-01)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
admin/includes/admin-ajax.php CHANGED
@@ -39,7 +39,8 @@ function auxin_ajax_send_feedback(){
39
  );
40
  // send the rating through the api
41
  $request = wp_remote_post( 'http://api.averta.net/envato/items/', $args );
42
- update_option( 'auxin_show_rate_scale_notice', false );
 
43
  // if ( ! is_wp_error( $request ) || wp_remote_retrieve_response_code( $request ) === 200 ) {}
44
 
45
  // store the user rating on the website
@@ -76,7 +77,8 @@ function auxin_remove_feedback_notice() {
76
  wp_send_json_error( __( 'Authorization failed!', 'auxin-elements' ) );
77
  }
78
 
79
- update_option( 'auxin_show_rate_scale_notice', false );
 
80
  wp_send_json_success();
81
  }
82
 
@@ -101,7 +103,7 @@ function auxin_ajax_remind_feedback() {
101
  }
102
 
103
  // reset feedback notice viewer
104
- update_option( 'auxin_show_rate_scale_notice', false );
105
  set_theme_mod( 'rate_scale_notice_remind_later_date', time() + DAY_IN_SECONDS * 3 );
106
 
107
  wp_send_json_success();
39
  );
40
  // send the rating through the api
41
  $request = wp_remote_post( 'http://api.averta.net/envato/items/', $args );
42
+ update_option( 'auxin_show_rate_scale_notice', 0 );
43
+ set_theme_mod( 'rate_scale_notice_remind_later_date', 0 );
44
  // if ( ! is_wp_error( $request ) || wp_remote_retrieve_response_code( $request ) === 200 ) {}
45
 
46
  // store the user rating on the website
77
  wp_send_json_error( __( 'Authorization failed!', 'auxin-elements' ) );
78
  }
79
 
80
+ update_option( 'auxin_show_rate_scale_notice', 0 );
81
+ set_theme_mod( 'rate_scale_notice_remind_later_date', 0 );
82
  wp_send_json_success();
83
  }
84
 
103
  }
104
 
105
  // reset feedback notice viewer
106
+ update_option( 'auxin_show_rate_scale_notice', 0 );
107
  set_theme_mod( 'rate_scale_notice_remind_later_date', time() + DAY_IN_SECONDS * 3 );
108
 
109
  wp_send_json_success();
admin/includes/admin-hooks.php CHANGED
@@ -987,15 +987,15 @@ function auxin_show_feedback_notice_conditionally() {
987
  if( '' === get_option( 'auxin_show_rate_scale_notice', '' ) ){
988
  $passed_diff_time = auxin_get_passed_installed_time();
989
  if( isset( $passed_diff_time->days ) && $passed_diff_time->days > 7 ){
990
- update_option( 'auxin_show_rate_scale_notice', true );
991
  }
992
  }
993
 
994
  // If remind me later snooze date is passed for showing feedback notice
995
  $remind_notice_time = get_theme_mod( 'rate_scale_notice_remind_later_date' );
996
  if( $remind_notice_time && ( time() > $remind_notice_time ) ){
997
- update_option( 'auxin_show_rate_scale_notice', true );
998
- set_theme_mod( 'rate_scale_notice_remind_later_date', false );
999
  }
1000
  }
1001
  add_action( 'save_post', 'auxin_show_feedback_notice_conditionally' );
987
  if( '' === get_option( 'auxin_show_rate_scale_notice', '' ) ){
988
  $passed_diff_time = auxin_get_passed_installed_time();
989
  if( isset( $passed_diff_time->days ) && $passed_diff_time->days > 7 ){
990
+ update_option( 'auxin_show_rate_scale_notice', 1 );
991
  }
992
  }
993
 
994
  // If remind me later snooze date is passed for showing feedback notice
995
  $remind_notice_time = get_theme_mod( 'rate_scale_notice_remind_later_date' );
996
  if( $remind_notice_time && ( time() > $remind_notice_time ) ){
997
+ update_option( 'auxin_show_rate_scale_notice', 1 );
998
+ set_theme_mod( 'rate_scale_notice_remind_later_date', 0 );
999
  }
1000
  }
1001
  add_action( 'save_post', 'auxin_show_feedback_notice_conditionally' );
auxin-elements.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
- * Version: 2.7.7
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
+ * Version: 2.7.8
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.7.7' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.7.8' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
languages/auxin-elements-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
- "POT-Creation-Date: 2021-01-24 06:15:13+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -21,77 +21,77 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: admin/includes/admin-ajax.php:7 admin/includes/admin-ajax.php:68
25
- #: admin/includes/admin-ajax.php:92
26
  msgid "Data cannot be delivered, please try again."
27
  msgstr "داده ها قابل تحویل نیستند، لطفا دوباره تلاش کنید."
28
 
29
- #: admin/includes/admin-ajax.php:19 admin/includes/admin-ajax.php:76
30
- #: admin/includes/admin-ajax.php:100
31
  msgid "Authorization failed!"
32
  msgstr "احراز هویت با خطا مواجه شد!"
33
 
34
- #: admin/includes/admin-ajax.php:52
35
  msgid "Sent Successfully. Thanks for your feedback!"
36
  msgstr "با موفقیت ارسال شد. از بازخورد شما ممنونیم."
37
 
38
- #: admin/includes/admin-ajax.php:55
39
  msgid "An error occurred. Feedback could not be delivered, please try again."
40
  msgstr "خطایی رخ داده است. بازخورد قابل تحویل نیست، لطفا دوباره تلاش کنید."
41
 
42
- #: admin/includes/admin-ajax.php:117 admin/includes/admin-ajax.php:238
43
- #: admin/includes/admin-ajax.php:297 admin/includes/admin-ajax.php:332
44
- #: admin/includes/admin-ajax.php:350 admin/includes/admin-ajax.php:391
45
  msgid "Token Error."
46
  msgstr ""
47
 
48
- #: admin/includes/admin-ajax.php:121
49
  msgid "It's Done."
50
  msgstr ""
51
 
52
- #: admin/includes/admin-ajax.php:124
53
  msgid "An error occurred."
54
  msgstr ""
55
 
56
- #: admin/includes/admin-ajax.php:241
57
  msgid "It's OK."
58
  msgstr ""
59
 
60
- #: admin/includes/admin-ajax.php:254
61
  #: includes/classes/class-auxin-welcome.php:1139
62
  #: includes/classes/class-auxin-welcome.php:1255
63
  msgid "Security Token Error!"
64
  msgstr ""
65
 
66
- #: admin/includes/admin-ajax.php:261
67
  msgid "License Activation"
68
  msgstr ""
69
 
70
- #: admin/includes/admin-ajax.php:262
71
  msgid ""
72
  "Please activate your license to get automatic updates, premium support, and "
73
  "unlimited access to the template library and demo importer."
74
  msgstr ""
75
 
76
- #: admin/includes/admin-ajax.php:265
77
  #, fuzzy
78
  msgid "E-mail address"
79
  msgstr "آدرس ایمیل جعبه تماس"
80
 
81
- #: admin/includes/admin-ajax.php:270
82
  msgid "Purchase code"
83
  msgstr ""
84
 
85
- #: admin/includes/admin-ajax.php:278
86
  msgid "Activate"
87
  msgstr ""
88
 
89
- #: admin/includes/admin-ajax.php:298 admin/includes/admin-ajax.php:313
90
  #: includes/classes/class-auxin-demo-importer.php:190
91
  msgid "Retry"
92
  msgstr ""
93
 
94
- #: admin/includes/admin-ajax.php:309
95
  #: includes/classes/class-auxin-demo-importer.php:114
96
  #: includes/classes/class-auxin-demo-importer.php:157
97
  #: includes/classes/class-auxin-demo-importer.php:192
@@ -101,20 +101,20 @@ msgstr ""
101
  msgid "Close"
102
  msgstr ""
103
 
104
- #: admin/includes/admin-ajax.php:366
105
  msgid "No data found!"
106
  msgstr ""
107
 
108
- #: admin/includes/admin-ajax.php:396
109
  #, fuzzy
110
  msgid "Please upload a valid file."
111
  msgstr "لطفا فایل ویدیو را بارگذاری کنید."
112
 
113
- #: admin/includes/admin-ajax.php:410
114
  msgid "Invalid or Empty Data."
115
  msgstr ""
116
 
117
- #: admin/includes/admin-ajax.php:447
118
  msgid "Successfully Imported."
119
  msgstr ""
120
 
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
+ "POT-Creation-Date: 2021-01-24 12:56:29+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: admin/includes/admin-ajax.php:7 admin/includes/admin-ajax.php:69
25
+ #: admin/includes/admin-ajax.php:94
26
  msgid "Data cannot be delivered, please try again."
27
  msgstr "داده ها قابل تحویل نیستند، لطفا دوباره تلاش کنید."
28
 
29
+ #: admin/includes/admin-ajax.php:19 admin/includes/admin-ajax.php:77
30
+ #: admin/includes/admin-ajax.php:102
31
  msgid "Authorization failed!"
32
  msgstr "احراز هویت با خطا مواجه شد!"
33
 
34
+ #: admin/includes/admin-ajax.php:53
35
  msgid "Sent Successfully. Thanks for your feedback!"
36
  msgstr "با موفقیت ارسال شد. از بازخورد شما ممنونیم."
37
 
38
+ #: admin/includes/admin-ajax.php:56
39
  msgid "An error occurred. Feedback could not be delivered, please try again."
40
  msgstr "خطایی رخ داده است. بازخورد قابل تحویل نیست، لطفا دوباره تلاش کنید."
41
 
42
+ #: admin/includes/admin-ajax.php:119 admin/includes/admin-ajax.php:240
43
+ #: admin/includes/admin-ajax.php:299 admin/includes/admin-ajax.php:334
44
+ #: admin/includes/admin-ajax.php:352 admin/includes/admin-ajax.php:393
45
  msgid "Token Error."
46
  msgstr ""
47
 
48
+ #: admin/includes/admin-ajax.php:123
49
  msgid "It's Done."
50
  msgstr ""
51
 
52
+ #: admin/includes/admin-ajax.php:126
53
  msgid "An error occurred."
54
  msgstr ""
55
 
56
+ #: admin/includes/admin-ajax.php:243
57
  msgid "It's OK."
58
  msgstr ""
59
 
60
+ #: admin/includes/admin-ajax.php:256
61
  #: includes/classes/class-auxin-welcome.php:1139
62
  #: includes/classes/class-auxin-welcome.php:1255
63
  msgid "Security Token Error!"
64
  msgstr ""
65
 
66
+ #: admin/includes/admin-ajax.php:263
67
  msgid "License Activation"
68
  msgstr ""
69
 
70
+ #: admin/includes/admin-ajax.php:264
71
  msgid ""
72
  "Please activate your license to get automatic updates, premium support, and "
73
  "unlimited access to the template library and demo importer."
74
  msgstr ""
75
 
76
+ #: admin/includes/admin-ajax.php:267
77
  #, fuzzy
78
  msgid "E-mail address"
79
  msgstr "آدرس ایمیل جعبه تماس"
80
 
81
+ #: admin/includes/admin-ajax.php:272
82
  msgid "Purchase code"
83
  msgstr ""
84
 
85
+ #: admin/includes/admin-ajax.php:280
86
  msgid "Activate"
87
  msgstr ""
88
 
89
+ #: admin/includes/admin-ajax.php:300 admin/includes/admin-ajax.php:315
90
  #: includes/classes/class-auxin-demo-importer.php:190
91
  msgid "Retry"
92
  msgstr ""
93
 
94
+ #: admin/includes/admin-ajax.php:311
95
  #: includes/classes/class-auxin-demo-importer.php:114
96
  #: includes/classes/class-auxin-demo-importer.php:157
97
  #: includes/classes/class-auxin-demo-importer.php:192
101
  msgid "Close"
102
  msgstr ""
103
 
104
+ #: admin/includes/admin-ajax.php:368
105
  msgid "No data found!"
106
  msgstr ""
107
 
108
+ #: admin/includes/admin-ajax.php:398
109
  #, fuzzy
110
  msgid "Please upload a valid file."
111
  msgstr "لطفا فایل ویدیو را بارگذاری کنید."
112
 
113
+ #: admin/includes/admin-ajax.php:412
114
  msgid "Invalid or Empty Data."
115
  msgstr ""
116
 
117
+ #: admin/includes/admin-ajax.php:449
118
  msgid "Successfully Imported."
119
  msgstr ""
120
 
languages/auxin-elements.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2021}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Core Elements 2.7.7\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2021-01-24 06:15:13+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -24,76 +24,76 @@ msgstr ""
24
  "X-Textdomain-Support: yes\n"
25
  "X-Generator: grunt-wp-i18n 1.0.3\n"
26
 
27
- #: admin/includes/admin-ajax.php:7 admin/includes/admin-ajax.php:68
28
- #: admin/includes/admin-ajax.php:92
29
  msgid "Data cannot be delivered, please try again."
30
  msgstr ""
31
 
32
- #: admin/includes/admin-ajax.php:19 admin/includes/admin-ajax.php:76
33
- #: admin/includes/admin-ajax.php:100
34
  msgid "Authorization failed!"
35
  msgstr ""
36
 
37
- #: admin/includes/admin-ajax.php:52
38
  msgid "Sent Successfully. Thanks for your feedback!"
39
  msgstr ""
40
 
41
- #: admin/includes/admin-ajax.php:55
42
  msgid "An error occurred. Feedback could not be delivered, please try again."
43
  msgstr ""
44
 
45
- #: admin/includes/admin-ajax.php:117 admin/includes/admin-ajax.php:238
46
- #: admin/includes/admin-ajax.php:297 admin/includes/admin-ajax.php:332
47
- #: admin/includes/admin-ajax.php:350 admin/includes/admin-ajax.php:391
48
  msgid "Token Error."
49
  msgstr ""
50
 
51
- #: admin/includes/admin-ajax.php:121
52
  msgid "It's Done."
53
  msgstr ""
54
 
55
- #: admin/includes/admin-ajax.php:124
56
  msgid "An error occurred."
57
  msgstr ""
58
 
59
- #: admin/includes/admin-ajax.php:241
60
  msgid "It's OK."
61
  msgstr ""
62
 
63
- #: admin/includes/admin-ajax.php:254
64
  #: includes/classes/class-auxin-welcome.php:1139
65
  #: includes/classes/class-auxin-welcome.php:1255
66
  msgid "Security Token Error!"
67
  msgstr ""
68
 
69
- #: admin/includes/admin-ajax.php:261
70
  msgid "License Activation"
71
  msgstr ""
72
 
73
- #: admin/includes/admin-ajax.php:262
74
  msgid ""
75
  "Please activate your license to get automatic updates, premium support, and "
76
  "unlimited access to the template library and demo importer."
77
  msgstr ""
78
 
79
- #: admin/includes/admin-ajax.php:265
80
  msgid "E-mail address"
81
  msgstr ""
82
 
83
- #: admin/includes/admin-ajax.php:270
84
  msgid "Purchase code"
85
  msgstr ""
86
 
87
- #: admin/includes/admin-ajax.php:278
88
  msgid "Activate"
89
  msgstr ""
90
 
91
- #: admin/includes/admin-ajax.php:298 admin/includes/admin-ajax.php:313
92
  #: includes/classes/class-auxin-demo-importer.php:190
93
  msgid "Retry"
94
  msgstr ""
95
 
96
- #: admin/includes/admin-ajax.php:309
97
  #: includes/classes/class-auxin-demo-importer.php:114
98
  #: includes/classes/class-auxin-demo-importer.php:157
99
  #: includes/classes/class-auxin-demo-importer.php:192
@@ -103,19 +103,19 @@ msgstr ""
103
  msgid "Close"
104
  msgstr ""
105
 
106
- #: admin/includes/admin-ajax.php:366
107
  msgid "No data found!"
108
  msgstr ""
109
 
110
- #: admin/includes/admin-ajax.php:396
111
  msgid "Please upload a valid file."
112
  msgstr ""
113
 
114
- #: admin/includes/admin-ajax.php:410
115
  msgid "Invalid or Empty Data."
116
  msgstr ""
117
 
118
- #: admin/includes/admin-ajax.php:447
119
  msgid "Successfully Imported."
120
  msgstr ""
121
 
1
  # Averta Copyright (c) {2021}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.7.8\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2021-01-24 12:56:29+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
24
  "X-Textdomain-Support: yes\n"
25
  "X-Generator: grunt-wp-i18n 1.0.3\n"
26
 
27
+ #: admin/includes/admin-ajax.php:7 admin/includes/admin-ajax.php:69
28
+ #: admin/includes/admin-ajax.php:94
29
  msgid "Data cannot be delivered, please try again."
30
  msgstr ""
31
 
32
+ #: admin/includes/admin-ajax.php:19 admin/includes/admin-ajax.php:77
33
+ #: admin/includes/admin-ajax.php:102
34
  msgid "Authorization failed!"
35
  msgstr ""
36
 
37
+ #: admin/includes/admin-ajax.php:53
38
  msgid "Sent Successfully. Thanks for your feedback!"
39
  msgstr ""
40
 
41
+ #: admin/includes/admin-ajax.php:56
42
  msgid "An error occurred. Feedback could not be delivered, please try again."
43
  msgstr ""
44
 
45
+ #: admin/includes/admin-ajax.php:119 admin/includes/admin-ajax.php:240
46
+ #: admin/includes/admin-ajax.php:299 admin/includes/admin-ajax.php:334
47
+ #: admin/includes/admin-ajax.php:352 admin/includes/admin-ajax.php:393
48
  msgid "Token Error."
49
  msgstr ""
50
 
51
+ #: admin/includes/admin-ajax.php:123
52
  msgid "It's Done."
53
  msgstr ""
54
 
55
+ #: admin/includes/admin-ajax.php:126
56
  msgid "An error occurred."
57
  msgstr ""
58
 
59
+ #: admin/includes/admin-ajax.php:243
60
  msgid "It's OK."
61
  msgstr ""
62
 
63
+ #: admin/includes/admin-ajax.php:256
64
  #: includes/classes/class-auxin-welcome.php:1139
65
  #: includes/classes/class-auxin-welcome.php:1255
66
  msgid "Security Token Error!"
67
  msgstr ""
68
 
69
+ #: admin/includes/admin-ajax.php:263
70
  msgid "License Activation"
71
  msgstr ""
72
 
73
+ #: admin/includes/admin-ajax.php:264
74
  msgid ""
75
  "Please activate your license to get automatic updates, premium support, and "
76
  "unlimited access to the template library and demo importer."
77
  msgstr ""
78
 
79
+ #: admin/includes/admin-ajax.php:267
80
  msgid "E-mail address"
81
  msgstr ""
82
 
83
+ #: admin/includes/admin-ajax.php:272
84
  msgid "Purchase code"
85
  msgstr ""
86
 
87
+ #: admin/includes/admin-ajax.php:280
88
  msgid "Activate"
89
  msgstr ""
90
 
91
+ #: admin/includes/admin-ajax.php:300 admin/includes/admin-ajax.php:315
92
  #: includes/classes/class-auxin-demo-importer.php:190
93
  msgid "Retry"
94
  msgstr ""
95
 
96
+ #: admin/includes/admin-ajax.php:311
97
  #: includes/classes/class-auxin-demo-importer.php:114
98
  #: includes/classes/class-auxin-demo-importer.php:157
99
  #: includes/classes/class-auxin-demo-importer.php:192
103
  msgid "Close"
104
  msgstr ""
105
 
106
+ #: admin/includes/admin-ajax.php:368
107
  msgid "No data found!"
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-ajax.php:398
111
  msgid "Please upload a valid file."
112
  msgstr ""
113
 
114
+ #: admin/includes/admin-ajax.php:412
115
  msgid "Invalid or Empty Data."
116
  msgstr ""
117
 
118
+ #: admin/includes/admin-ajax.php:449
119
  msgid "Successfully Imported."
120
  msgstr ""
121
 
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.7.7 (2021-01)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.7.8 (2021-01)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */