Shortcodes and extra features for Phlox theme - Version 2.5.10

Version Description

Download this release

Release Info

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

Code changes from version 2.5.9 to 2.5.10

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.4.0
10
- Stable tag: 2.5.9
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.4.0
10
+ Stable tag: 2.5.10
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.5.9 (2020-04-26)
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.5.10 (2020-04-26)
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/classes/class-auxels-system-check.php ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Auxels_System_Check {
3
+
4
+ /**
5
+ * Instance of this class.
6
+ *
7
+ * @var object
8
+ */
9
+ protected static $instance = null;
10
+
11
+ function __construct(){
12
+ add_filter( 'site_status_tests', array( $this, 'auxin_system_status_check' ) );
13
+ }
14
+
15
+ /**
16
+ * Add checking maximum execution time test
17
+ */
18
+ public function auxin_system_status_check( $tests ) {
19
+ $tests['direct']['auxin_system_check'] = array(
20
+ 'label' => __( 'System Status Check By Averta', 'auxin-elements' ),
21
+ 'test' => array( $this, 'check_php_ini_settings' )
22
+ );
23
+
24
+ return $tests;
25
+ }
26
+
27
+ /**
28
+ * Maximum execution time test
29
+ */
30
+ public function check_php_ini_settings() {
31
+
32
+ $result = array(
33
+ 'label' => __( 'Required and recommended php ini settings passed successfully' ),
34
+ 'status' => 'good',
35
+ 'badge' => array(
36
+ 'label' => __( 'Performance' ),
37
+ 'color' => 'blue',
38
+ ),
39
+ 'actions' => '',
40
+ 'test' => 'auxin_check_php_ini_settings',
41
+ 'description' => __( 'Maximum execution time test passed', 'auxin-elements' )
42
+ );
43
+
44
+ if ( ! $this->check_maximum_execution_time() ) {
45
+ $result['status'] = 'warning';
46
+
47
+ $class = 'warning';
48
+ $screen_reader = __( 'Warning', 'auxin-elements' );
49
+ $message = __( 'We recommend setting max execution time to at least 60.', 'auxin-elements' );
50
+ $message = "<span class='dashicons $class'><span class='screen-reader-text'>$screen_reader</span></span> $message";
51
+
52
+ $output = '<ul>';
53
+ $output .= sprintf(
54
+ '<li></li>',
55
+ $message
56
+ );
57
+ $output .= '</ul>';
58
+
59
+ $result['description'] = $output;
60
+
61
+ if ( 'good' !== $result['status'] ) {
62
+ if ( 'recommended' === $result['status'] ) {
63
+ $result['label'] = __( 'We recommend setting max execution time to at least 60.', 'auxin-elements' );
64
+ }
65
+
66
+ }
67
+ }
68
+
69
+ return $result;
70
+ }
71
+
72
+ public function check_maximum_execution_time() {
73
+ if ( function_exists( 'ini_get' ) ) {
74
+ $time_limit = ini_get('max_execution_time');
75
+ //should add the condition
76
+ if ( $time_limit < 60 && $time_limit != 0 ) {
77
+ return false;
78
+ }
79
+ }
80
+
81
+ return true;
82
+ }
83
+ /**
84
+ * Get num of system notices
85
+ */
86
+ public function get_num_of_notices() {
87
+
88
+ $system_notices = ! $this->check_maximum_execution_time() ? 1 : 0;
89
+
90
+ if ( ! extension_loaded( 'imagick' ) ) {
91
+ ++$system_notices;
92
+ }
93
+
94
+ return $system_notices;
95
+
96
+ }
97
+
98
+ /**
99
+ * Return an instance of this class.
100
+ *
101
+ * @return object A single instance of this class.
102
+ */
103
+ public static function get_instance() {
104
+
105
+ // If the single instance hasn't been set, set it now.
106
+ if ( null == self::$instance ) {
107
+ self::$instance = new self;
108
+ }
109
+
110
+ return self::$instance;
111
+ }
112
+ }
113
+ ?>
admin/includes/index.php CHANGED
@@ -2,6 +2,7 @@
2
 
3
  // Call the instance of auxin upgrader
4
  Auxin_Upgrader_Prepare::get_instance();
 
5
 
6
  // load admin related functions
7
  include_once( 'admin-the-functions.php' );
2
 
3
  // Call the instance of auxin upgrader
4
  Auxin_Upgrader_Prepare::get_instance();
5
+ Auxels_System_Check::get_instance();
6
 
7
  // load admin related functions
8
  include_once( 'admin-the-functions.php' );
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.5.9
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.5.10
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/classes/class-auxin-welcome-sections.php CHANGED
@@ -158,13 +158,16 @@ class Auxin_Welcome_Sections {
158
  */
159
  public function add_section_status( $sections ){
160
 
161
- $sections['status'] = array(
162
- 'label' => __( 'System Status', 'auxin-elements' ),
163
- 'description' => '',
164
- 'callback' => array( $this, 'render_system_status' )
165
- );
166
 
167
- return $sections;
 
 
 
 
 
 
168
  }
169
 
170
  /**
@@ -186,201 +189,6 @@ class Auxin_Welcome_Sections {
186
  return $sections;
187
  }
188
 
189
-
190
- /**
191
- * Content for status tab in welcome-about page in admin panel
192
- *
193
- * @return void
194
- */
195
- function render_system_status(){
196
- ?>
197
- <div class="aux-section-content-box">
198
- <h3 class="aux-content-title"><?php _e('Some informaition about your WordPress installation which can be helpful for debugging or monitoring your website.', 'auxin-elements' ); ?></h3>
199
- <div class="aux-status-wrapper">
200
-
201
- <table class="widefat" cellspacing="0">
202
- <thead>
203
- <tr>
204
- <th colspan="3" data-export-label="WordPress Environment"><?php _e( 'WordPress Environment', 'auxin-elements' ); ?></th>
205
- </tr>
206
- </thead>
207
- <tbody>
208
- <tr>
209
- <td data-export-label="Home URL"><?php _e( 'Home URL', 'auxin-elements' ); ?>:</td>
210
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The URL of your site\'s homepage.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
211
- <td><?php echo home_url(); ?></td>
212
- </tr>
213
- <tr>
214
- <td data-export-label="Site URL"><?php _e( 'Site URL', 'auxin-elements' ); ?>:</td>
215
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The root URL of your site.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
216
- <td><?php echo site_url(); ?></td>
217
- </tr>
218
- <tr>
219
- <td data-export-label="WP Version"><?php _e( 'WP Version', 'auxin-elements' ); ?>:</td>
220
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The version of WordPress installed on your site.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
221
- <td><?php bloginfo('version'); ?></td>
222
- </tr>
223
- <tr>
224
- <td data-export-label="WP Multisite"><?php _e( 'WP Multisite', 'auxin-elements' ); ?>:</td>
225
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'Whether or not you have WordPress Multisite enabled.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
226
- <td><?php if ( is_multisite() ) echo '&#10004;'; else echo '&#10005;'; ?></td>
227
- </tr>
228
- <tr>
229
- <td data-export-label="WP Memory Limit"><?php _e( 'WP Memory Limit', 'auxin-elements' ); ?>:</td>
230
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The maximum amount of memory (RAM) that your site can use at one time.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
231
- <td><?php
232
- // This field need to make some changes
233
- $server_memory = 0;
234
- if( function_exists( 'ini_get' ) ) {
235
- echo ( ini_get( 'memory_limit') );
236
- }
237
- ?></td>
238
- </tr>
239
- <tr>
240
- <td data-export-label="WP Permalink"><?php _e( 'WP Permalink', 'auxin-elements' ); ?>:</td>
241
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The WordPress permalink structer.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
242
- <td><?php echo get_option( 'permalink_structure' ); ?></td>
243
- </tr>
244
- <tr>
245
- <td data-export-label="WP Debug Mode"><?php _e( 'WP Debug Mode', 'auxin-elements' ); ?>:</td>
246
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'Displays whether or not WordPress is in Debug Mode.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
247
- <td><?php if ( defined('WP_DEBUG') && WP_DEBUG ) echo '<mark class="yes">' . '&#10004;' . '</mark>'; else echo '<mark class="no">' . '&#10005;' . '</mark>'; ?></td>
248
- </tr>
249
- <tr>
250
- <td data-export-label="Language"><?php _e( 'Language', 'auxin-elements' ); ?>:</td>
251
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The current language used by WordPress. Default = English', 'auxin-elements' ) . '"> ? </a>'; ?></td>
252
- <td><?php echo get_locale() ?></td>
253
- </tr>
254
- </tbody>
255
- </table>
256
-
257
- <table class="widefat" cellspacing="0">
258
- <thead>
259
- <tr>
260
- <th colspan="3" data-export-label="Server Environment"><?php _e( 'Server Environment', 'auxin-elements' ); ?></th>
261
- </tr>
262
- </thead>
263
- <tbody>
264
- <tr>
265
- <td data-export-label="Server Info"><?php _e( 'Server Info', 'auxin-elements' ); ?>:</td>
266
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'Information about the web server that is currently hosting your site.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
267
- <td><?php echo esc_html( $_SERVER['SERVER_SOFTWARE'] ); ?></td>
268
- </tr>
269
- <tr>
270
- <td data-export-label="PHP Version"><?php _e( 'PHP Version', 'auxin-elements' ); ?>:</td>
271
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The version of PHP installed on your hosting server.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
272
- <td><?php
273
- // should add the cpmparsion check for version_compare(PHP_VERSION, '5.0.0', '<')
274
- if ( function_exists( 'phpversion' ) ) echo esc_html( phpversion() ); ?></td>
275
- </tr>
276
- <tr>
277
- <td data-export-label="Server Info"><?php _e( 'Server Info', 'auxin-elements' ); ?>:</td>
278
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'Information about the web server that is currently hosting your site.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
279
- <td><?php echo esc_html( $_SERVER['SERVER_SOFTWARE'] ); ?></td>
280
- </tr>
281
- <?php if ( function_exists( 'ini_get' ) ) : ?>
282
- <tr>
283
- <td data-export-label="PHP Post Max Size"><?php _e( 'PHP Post Max Size', 'auxin-elements' ); ?>:</td>
284
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The largest file size that can be contained in one post.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
285
- <td></td>
286
- </tr>
287
- <tr>
288
- <td data-export-label="PHP Time Limit"><?php _e( 'PHP Time Limit', 'auxin-elements' ); ?>:</td>
289
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The amount of time (in seconds) that your site will spend on a single operation before timing out (to avoid server lockups)', 'auxin-elements' ) . '"> ? </a>'; ?></td>
290
- <td><?php
291
- $time_limit = ini_get('max_execution_time');
292
- //should add the condition
293
- if ( $time_limit < 60 && $time_limit != 0 ) {
294
- echo '<mark class="server-status-error">' . sprintf( __( '%s - We recommend setting max execution time to at least 60. See: <a href="%s" target="_blank">Increasing max execution to PHP</a>', 'auxin-elements' ), $time_limit, 'http://codex.wordpress.org/Common_WordPress_Errors#Maximum_execution_time_exceeded' ) . '</mark>';
295
- } else {
296
- echo '<mark class="yes">' . $time_limit . '</mark>';
297
- }
298
- ?>
299
- </td>
300
- </tr>
301
- <tr>
302
- <td data-export-label="PHP Max Input Vars"><?php _e( 'PHP Max Input Vars', 'auxin-elements' ); ?>:</td>
303
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The maximum number of variables your server can use for a single function to avoid overloads.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
304
- <td><?php echo ini_get('max_input_vars'); ?></td>
305
- </tr>
306
- <tr>
307
- <td data-export-label="SUHOSIN Installed"><?php _e( 'SUHOSIN Installed', 'auxin-elements' ); ?>:</td>
308
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'Suhosin is an advanced protection system for PHP installations. It was designed to protect your servers on the one hand against a number of well known problems in PHP applications and on the other hand against potential unknown vulnerabilities within these applications or the PHP core itself. If enabled on your server, Suhosin may need to be configured to increase its data submission limits.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
309
- <td><?php echo extension_loaded( 'suhosin' ) ? '&#10004;' : '&#10005;'; ?></td>
310
- </tr>
311
- <?php endif; ?>
312
- <tr>
313
- <td data-export-label="MySQL Version"><?php _e( 'MySQL Version', 'auxin-elements' ); ?>:</td>
314
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The version of MySQL installed on your hosting server.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
315
- <td>
316
- <?php
317
- /** @global wpdb $wpdb */
318
- global $wpdb;
319
- echo $wpdb->db_version();
320
- ?>
321
- </td>
322
- </tr>
323
- <tr>
324
- <td data-export-label="Max Upload Size"><?php _e( 'Max Upload Size', 'auxin-elements' ); ?>:</td>
325
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The largest file size that can be uploaded to your WordPress installation.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
326
- <td><?php echo size_format( wp_max_upload_size() ); ?></td>
327
- </tr>
328
- <tr>
329
- <td data-export-label="Default Timezone is UTC"><?php _e( 'Default Timezone is UTC', 'auxin-elements' ); ?>:</td>
330
- <td class="help"><?php echo '<a href="#" class="help-tip" original-title="' . esc_attr__( 'The default timezone for your server.', 'auxin-elements' ) . '"> ? </a>'; ?></td>
331
- <td><?php
332
- $default_timezone = date_default_timezone_get();
333
- if ( 'UTC' !== $default_timezone ) {
334
- echo '<mark class="server-status-error">' . '&#10005; ' . sprintf( __( 'Default timezone is %s - it should be UTC', 'auxin-elements' ), $default_timezone ) . '</mark>';
335
- } else {
336
- echo '<mark class="yes">' . '&#10004;' . '</mark>';
337
- } ?>
338
- </td>
339
- </tr>
340
- </tbody>
341
- </table>
342
-
343
- <table class="widefat active-plugins" cellspacing="0" id="status">
344
- <thead>
345
- <tr>
346
- <th colspan="3" data-export-label="Active Plugins (<?php echo count( (array) get_option( 'active_plugins' ) ); ?>)"><?php _e( 'Active Plugins', 'auxin-elements' ); ?> (<?php echo count( (array) get_option( 'active_plugins' ) ); ?>)</th>
347
- </tr>
348
- </thead>
349
- <tbody>
350
- <?php
351
- $active_plugins = (array) get_option( 'active_plugins', array() );
352
-
353
- if ( is_multisite() ) {
354
- $active_plugins = array_merge( $active_plugins, get_site_option( 'active_sitewide_plugins', array() ) );
355
- }
356
- foreach ( $active_plugins as $plugin ) {
357
- $plugin_data = @get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin );
358
- $dirname = dirname( $plugin );
359
- $version_string = '';
360
- $network_string = '';
361
- if ( ! empty( $plugin_data['Name'] ) ) {
362
- // link the plugin name to the plugin url if available
363
- $plugin_name = esc_html( $plugin_data['Name'] );
364
- if ( ! empty( $plugin_data['PluginURI'] ) ) {
365
- $plugin_name = '<a href="' . esc_url( $plugin_data['PluginURI'] ) . '" title="' . __( 'Visit plugin homepage' , 'auxin-elements' ) . '" target="_blank">' . $plugin_name . '</a>';
366
- }
367
- ?>
368
- <tr>
369
- <td><?php echo $plugin_name; ?></td>
370
- <td><?php echo sprintf( _x( 'by %s', 'by author', 'auxin-elements' ), $plugin_data['Author'] ) . ' Version &ndash; ' . esc_html( $plugin_data['Version'] ) . $version_string . $network_string; ?></td>
371
- </tr>
372
- <?php
373
- }
374
- }
375
- ?>
376
- </tbody>
377
- </table>
378
- </div>
379
- </div>
380
- <?php
381
- }
382
-
383
-
384
  function render_feedback(){
385
  // the previous rate of the client
386
  $previous_rate = auxin_get_option( 'user_rating' );
158
  */
159
  public function add_section_status( $sections ){
160
 
161
+ $system_notices = Auxels_System_Check::get_instance()->get_num_of_notices();
162
+ $system_check = $system_notices ? sprintf(' <span class = "update-plugins count-%1$s"><span class="update-count">%1$s</span></span>', $system_notices ) : '';
 
 
 
163
 
164
+ $sections['status'] = array(
165
+ 'label' => __( 'System Status', 'auxin-elements' ) . $system_check,
166
+ 'description' => '',
167
+ 'url' => admin_url( 'site-health.php' ), // optional
168
+ );
169
+
170
+ return $sections;
171
  }
172
 
173
  /**
189
  return $sections;
190
  }
191
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  function render_feedback(){
193
  // the previous rate of the client
194
  $previous_rate = auxin_get_option( 'user_rating' );
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.5.9' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.5.10' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
languages/auxin-elements.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Core Elements 2.5.9\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2020-04-26 07:24:49+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -266,6 +266,31 @@ msgstr ""
266
  msgid "Error while saving the template."
267
  msgstr ""
268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  #: admin/includes/classes/class-auxin-license-activation.php:105
270
  msgid "Email address is required."
271
  msgstr ""
@@ -2159,268 +2184,86 @@ msgstr ""
2159
  msgid "Feedback"
2160
  msgstr ""
2161
 
2162
- #: includes/classes/class-auxin-welcome-sections.php:162
2163
  msgid "System Status"
2164
  msgstr ""
2165
 
2166
- #: includes/classes/class-auxin-welcome-sections.php:178
2167
  msgid "Go Pro"
2168
  msgstr ""
2169
 
2170
- #: includes/classes/class-auxin-welcome-sections.php:198
2171
- msgid ""
2172
- "Some informaition about your WordPress installation which can be helpful "
2173
- "for debugging or monitoring your website."
2174
- msgstr ""
2175
-
2176
- #: includes/classes/class-auxin-welcome-sections.php:204
2177
- msgid "WordPress Environment"
2178
- msgstr ""
2179
-
2180
- #: includes/classes/class-auxin-welcome-sections.php:209
2181
- msgid "Home URL"
2182
- msgstr ""
2183
-
2184
- #: includes/classes/class-auxin-welcome-sections.php:210
2185
- msgid "The URL of your site's homepage."
2186
- msgstr ""
2187
-
2188
- #: includes/classes/class-auxin-welcome-sections.php:214
2189
- #: includes/elementor/modules/dynamic-tags/site-url.php:18
2190
- msgid "Site URL"
2191
- msgstr ""
2192
-
2193
- #: includes/classes/class-auxin-welcome-sections.php:215
2194
- msgid "The root URL of your site."
2195
- msgstr ""
2196
-
2197
- #: includes/classes/class-auxin-welcome-sections.php:219
2198
- msgid "WP Version"
2199
- msgstr ""
2200
-
2201
- #: includes/classes/class-auxin-welcome-sections.php:220
2202
- msgid "The version of WordPress installed on your site."
2203
- msgstr ""
2204
-
2205
- #: includes/classes/class-auxin-welcome-sections.php:224
2206
- msgid "WP Multisite"
2207
- msgstr ""
2208
-
2209
- #: includes/classes/class-auxin-welcome-sections.php:225
2210
- msgid "Whether or not you have WordPress Multisite enabled."
2211
- msgstr ""
2212
-
2213
- #: includes/classes/class-auxin-welcome-sections.php:229
2214
- msgid "WP Memory Limit"
2215
- msgstr ""
2216
-
2217
- #: includes/classes/class-auxin-welcome-sections.php:230
2218
- msgid "The maximum amount of memory (RAM) that your site can use at one time."
2219
- msgstr ""
2220
-
2221
- #: includes/classes/class-auxin-welcome-sections.php:240
2222
- msgid "WP Permalink"
2223
- msgstr ""
2224
-
2225
- #: includes/classes/class-auxin-welcome-sections.php:241
2226
- msgid "The WordPress permalink structer."
2227
- msgstr ""
2228
-
2229
- #: includes/classes/class-auxin-welcome-sections.php:245
2230
- msgid "WP Debug Mode"
2231
- msgstr ""
2232
-
2233
- #: includes/classes/class-auxin-welcome-sections.php:246
2234
- msgid "Displays whether or not WordPress is in Debug Mode."
2235
- msgstr ""
2236
-
2237
- #: includes/classes/class-auxin-welcome-sections.php:250
2238
- #: includes/elements/code.php:73
2239
- msgid "Language"
2240
- msgstr ""
2241
-
2242
- #: includes/classes/class-auxin-welcome-sections.php:251
2243
- msgid "The current language used by WordPress. Default = English"
2244
- msgstr ""
2245
-
2246
- #: includes/classes/class-auxin-welcome-sections.php:260
2247
- msgid "Server Environment"
2248
- msgstr ""
2249
-
2250
- #: includes/classes/class-auxin-welcome-sections.php:265
2251
- #: includes/classes/class-auxin-welcome-sections.php:277
2252
- msgid "Server Info"
2253
- msgstr ""
2254
-
2255
- #: includes/classes/class-auxin-welcome-sections.php:266
2256
- #: includes/classes/class-auxin-welcome-sections.php:278
2257
- msgid "Information about the web server that is currently hosting your site."
2258
- msgstr ""
2259
-
2260
- #: includes/classes/class-auxin-welcome-sections.php:270
2261
- msgid "PHP Version"
2262
- msgstr ""
2263
-
2264
- #: includes/classes/class-auxin-welcome-sections.php:271
2265
- msgid "The version of PHP installed on your hosting server."
2266
- msgstr ""
2267
-
2268
- #: includes/classes/class-auxin-welcome-sections.php:283
2269
- msgid "PHP Post Max Size"
2270
- msgstr ""
2271
-
2272
- #: includes/classes/class-auxin-welcome-sections.php:284
2273
- msgid "The largest file size that can be contained in one post."
2274
- msgstr ""
2275
-
2276
- #: includes/classes/class-auxin-welcome-sections.php:288
2277
- msgid "PHP Time Limit"
2278
- msgstr ""
2279
-
2280
- #: includes/classes/class-auxin-welcome-sections.php:289
2281
- msgid ""
2282
- "The amount of time (in seconds) that your site will spend on a single "
2283
- "operation before timing out (to avoid server lockups)"
2284
- msgstr ""
2285
-
2286
- #: includes/classes/class-auxin-welcome-sections.php:294
2287
- msgid ""
2288
- "%s - We recommend setting max execution time to at least 60. See: <a "
2289
- "href=\"%s\" target=\"_blank\">Increasing max execution to PHP</a>"
2290
- msgstr ""
2291
-
2292
- #: includes/classes/class-auxin-welcome-sections.php:302
2293
- msgid "PHP Max Input Vars"
2294
- msgstr ""
2295
-
2296
- #: includes/classes/class-auxin-welcome-sections.php:303
2297
- msgid ""
2298
- "The maximum number of variables your server can use for a single function "
2299
- "to avoid overloads."
2300
- msgstr ""
2301
-
2302
- #: includes/classes/class-auxin-welcome-sections.php:307
2303
- msgid "SUHOSIN Installed"
2304
- msgstr ""
2305
-
2306
- #: includes/classes/class-auxin-welcome-sections.php:308
2307
- msgid ""
2308
- "Suhosin is an advanced protection system for PHP installations. It was "
2309
- "designed to protect your servers on the one hand against a number of well "
2310
- "known problems in PHP applications and on the other hand against potential "
2311
- "unknown vulnerabilities within these applications or the PHP core itself. "
2312
- "If enabled on your server, Suhosin may need to be configured to increase "
2313
- "its data submission limits."
2314
- msgstr ""
2315
-
2316
- #: includes/classes/class-auxin-welcome-sections.php:313
2317
- msgid "MySQL Version"
2318
- msgstr ""
2319
-
2320
- #: includes/classes/class-auxin-welcome-sections.php:314
2321
- msgid "The version of MySQL installed on your hosting server."
2322
- msgstr ""
2323
-
2324
- #: includes/classes/class-auxin-welcome-sections.php:324
2325
- msgid "Max Upload Size"
2326
- msgstr ""
2327
-
2328
- #: includes/classes/class-auxin-welcome-sections.php:325
2329
- msgid "The largest file size that can be uploaded to your WordPress installation."
2330
- msgstr ""
2331
-
2332
- #: includes/classes/class-auxin-welcome-sections.php:329
2333
- msgid "Default Timezone is UTC"
2334
- msgstr ""
2335
-
2336
- #: includes/classes/class-auxin-welcome-sections.php:330
2337
- msgid "The default timezone for your server."
2338
- msgstr ""
2339
-
2340
- #: includes/classes/class-auxin-welcome-sections.php:334
2341
- msgid "Default timezone is %s - it should be UTC"
2342
- msgstr ""
2343
-
2344
- #: includes/classes/class-auxin-welcome-sections.php:346
2345
- msgid "Active Plugins"
2346
- msgstr ""
2347
-
2348
- #: includes/classes/class-auxin-welcome-sections.php:365
2349
- msgid "Visit plugin homepage"
2350
- msgstr ""
2351
-
2352
- #: includes/classes/class-auxin-welcome-sections.php:400
2353
  msgid "How likely are you to recommend %s to a friend?"
2354
  msgstr ""
2355
 
2356
- #: includes/classes/class-auxin-welcome-sections.php:413
2357
  msgid "Don't like it"
2358
  msgstr ""
2359
 
2360
- #: includes/classes/class-auxin-welcome-sections.php:414
2361
  msgid "Like it so much"
2362
  msgstr ""
2363
 
2364
- #: includes/classes/class-auxin-welcome-sections.php:422
2365
  msgid ""
2366
  "Thanks for using Phlox theme. If you are enjoying this theme, please "
2367
  "support us by %s submitting 5 star rate here%s. That would be a huge help "
2368
  "for us to continue developing this theme."
2369
  msgstr ""
2370
 
2371
- #: includes/classes/class-auxin-welcome-sections.php:428
2372
  msgid "Please explain why you gave this score (optional)"
2373
  msgstr ""
2374
 
2375
- #: includes/classes/class-auxin-welcome-sections.php:431
2376
  msgid ""
2377
  "Please do not use this form to get support, in this case please check the "
2378
  "%s help section %s"
2379
  msgstr ""
2380
 
2381
- #: includes/classes/class-auxin-welcome-sections.php:438
2382
  #: includes/elementor/widgets/theme-elements/modern-search.php:124
2383
  #: includes/elements/contact-form.php:228
2384
  msgid "Submit"
2385
  msgstr ""
2386
 
2387
- #: includes/classes/class-auxin-welcome-sections.php:442
2388
  msgid "Submitting your feedback .."
2389
  msgstr ""
2390
 
2391
- #: includes/classes/class-auxin-welcome-sections.php:466
2392
  msgid "Thanks for your feedback"
2393
  msgstr ""
2394
 
2395
- #: includes/classes/class-auxin-welcome-sections.php:468
2396
  msgid "Please try again and fill up at least the feedback field."
2397
  msgstr ""
2398
 
2399
- #: includes/classes/class-auxin-welcome-sections.php:512
2400
  msgid "Changelog"
2401
  msgstr ""
2402
 
2403
- #: includes/classes/class-auxin-welcome-sections.php:514
2404
  msgid "Follow Us"
2405
  msgstr ""
2406
 
2407
- #: includes/classes/class-auxin-welcome-sections.php:516
2408
  msgid "Follow us on Twitter"
2409
  msgstr ""
2410
 
2411
- #: includes/classes/class-auxin-welcome-sections.php:517
2412
  msgid "Follow us on Facebook"
2413
  msgstr ""
2414
 
2415
- #: includes/classes/class-auxin-welcome-sections.php:518
2416
  msgid "Follow us on Instagram"
2417
  msgstr ""
2418
 
2419
- #: includes/classes/class-auxin-welcome-sections.php:519
2420
  msgid "Follow us on Envato"
2421
  msgstr ""
2422
 
2423
- #: includes/classes/class-auxin-welcome-sections.php:520
2424
  msgid "Subscribe to Phlox YouTube channel"
2425
  msgstr ""
2426
 
@@ -3692,6 +3535,10 @@ msgstr ""
3692
  msgid "Site Title"
3693
  msgstr ""
3694
 
 
 
 
 
3695
  #: includes/elementor/modules/dynamic-tags/user-info.php:19
3696
  msgid "User Info"
3697
  msgstr ""
@@ -9116,6 +8963,10 @@ msgstr ""
9116
  msgid "Code title, leave it empty if you don`t need title."
9117
  msgstr ""
9118
 
 
 
 
 
9119
  #: includes/elements/code.php:79
9120
  msgid "JavaScript"
9121
  msgstr ""
@@ -11792,11 +11643,6 @@ msgstr ""
11792
  msgid "http://averta.net"
11793
  msgstr ""
11794
 
11795
- #: includes/classes/class-auxin-welcome-sections.php:370
11796
- msgctxt "by author"
11797
- msgid "by %s"
11798
- msgstr ""
11799
-
11800
  #: includes/general-functions.php:2265
11801
  msgctxt "yearly archives date format"
11802
  msgid "Y"
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.5.10\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2020-04-26 12:06:33+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
266
  msgid "Error while saving the template."
267
  msgstr ""
268
 
269
+ #: admin/includes/classes/class-auxels-system-check.php:20
270
+ msgid "System Status Check By Averta"
271
+ msgstr ""
272
+
273
+ #: admin/includes/classes/class-auxels-system-check.php:33
274
+ msgid "Required and recommended php ini settings passed successfully"
275
+ msgstr ""
276
+
277
+ #: admin/includes/classes/class-auxels-system-check.php:36
278
+ msgid "Performance"
279
+ msgstr ""
280
+
281
+ #: admin/includes/classes/class-auxels-system-check.php:41
282
+ msgid "Maximum execution time test passed"
283
+ msgstr ""
284
+
285
+ #: admin/includes/classes/class-auxels-system-check.php:48
286
+ msgid "Warning"
287
+ msgstr ""
288
+
289
+ #: admin/includes/classes/class-auxels-system-check.php:49
290
+ #: admin/includes/classes/class-auxels-system-check.php:63
291
+ msgid "We recommend setting max execution time to at least 60."
292
+ msgstr ""
293
+
294
  #: admin/includes/classes/class-auxin-license-activation.php:105
295
  msgid "Email address is required."
296
  msgstr ""
2184
  msgid "Feedback"
2185
  msgstr ""
2186
 
2187
+ #: includes/classes/class-auxin-welcome-sections.php:165
2188
  msgid "System Status"
2189
  msgstr ""
2190
 
2191
+ #: includes/classes/class-auxin-welcome-sections.php:181
2192
  msgid "Go Pro"
2193
  msgstr ""
2194
 
2195
+ #: includes/classes/class-auxin-welcome-sections.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2196
  msgid "How likely are you to recommend %s to a friend?"
2197
  msgstr ""
2198
 
2199
+ #: includes/classes/class-auxin-welcome-sections.php:221
2200
  msgid "Don't like it"
2201
  msgstr ""
2202
 
2203
+ #: includes/classes/class-auxin-welcome-sections.php:222
2204
  msgid "Like it so much"
2205
  msgstr ""
2206
 
2207
+ #: includes/classes/class-auxin-welcome-sections.php:230
2208
  msgid ""
2209
  "Thanks for using Phlox theme. If you are enjoying this theme, please "
2210
  "support us by %s submitting 5 star rate here%s. That would be a huge help "
2211
  "for us to continue developing this theme."
2212
  msgstr ""
2213
 
2214
+ #: includes/classes/class-auxin-welcome-sections.php:236
2215
  msgid "Please explain why you gave this score (optional)"
2216
  msgstr ""
2217
 
2218
+ #: includes/classes/class-auxin-welcome-sections.php:239
2219
  msgid ""
2220
  "Please do not use this form to get support, in this case please check the "
2221
  "%s help section %s"
2222
  msgstr ""
2223
 
2224
+ #: includes/classes/class-auxin-welcome-sections.php:246
2225
  #: includes/elementor/widgets/theme-elements/modern-search.php:124
2226
  #: includes/elements/contact-form.php:228
2227
  msgid "Submit"
2228
  msgstr ""
2229
 
2230
+ #: includes/classes/class-auxin-welcome-sections.php:250
2231
  msgid "Submitting your feedback .."
2232
  msgstr ""
2233
 
2234
+ #: includes/classes/class-auxin-welcome-sections.php:274
2235
  msgid "Thanks for your feedback"
2236
  msgstr ""
2237
 
2238
+ #: includes/classes/class-auxin-welcome-sections.php:276
2239
  msgid "Please try again and fill up at least the feedback field."
2240
  msgstr ""
2241
 
2242
+ #: includes/classes/class-auxin-welcome-sections.php:320
2243
  msgid "Changelog"
2244
  msgstr ""
2245
 
2246
+ #: includes/classes/class-auxin-welcome-sections.php:322
2247
  msgid "Follow Us"
2248
  msgstr ""
2249
 
2250
+ #: includes/classes/class-auxin-welcome-sections.php:324
2251
  msgid "Follow us on Twitter"
2252
  msgstr ""
2253
 
2254
+ #: includes/classes/class-auxin-welcome-sections.php:325
2255
  msgid "Follow us on Facebook"
2256
  msgstr ""
2257
 
2258
+ #: includes/classes/class-auxin-welcome-sections.php:326
2259
  msgid "Follow us on Instagram"
2260
  msgstr ""
2261
 
2262
+ #: includes/classes/class-auxin-welcome-sections.php:327
2263
  msgid "Follow us on Envato"
2264
  msgstr ""
2265
 
2266
+ #: includes/classes/class-auxin-welcome-sections.php:328
2267
  msgid "Subscribe to Phlox YouTube channel"
2268
  msgstr ""
2269
 
3535
  msgid "Site Title"
3536
  msgstr ""
3537
 
3538
+ #: includes/elementor/modules/dynamic-tags/site-url.php:18
3539
+ msgid "Site URL"
3540
+ msgstr ""
3541
+
3542
  #: includes/elementor/modules/dynamic-tags/user-info.php:19
3543
  msgid "User Info"
3544
  msgstr ""
8963
  msgid "Code title, leave it empty if you don`t need title."
8964
  msgstr ""
8965
 
8966
+ #: includes/elements/code.php:73
8967
+ msgid "Language"
8968
+ msgstr ""
8969
+
8970
  #: includes/elements/code.php:79
8971
  msgid "JavaScript"
8972
  msgstr ""
11643
  msgid "http://averta.net"
11644
  msgstr ""
11645
 
 
 
 
 
 
11646
  #: includes/general-functions.php:2265
11647
  msgctxt "yearly archives date format"
11648
  msgid "Y"
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.5.9 (2020-04-26)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.5.10 (2020-04-26)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */