WP Statistics - Version 12.2.1

Version Description

  • Fixed: Issue to add_column callback.
Download this release

Release Info

Developer mostafa.s1990
Plugin Icon 128x128 WP Statistics
Version 12.2.1
Comparing to
See all releases

Code changes from version 12.2 to 12.2.1

includes/classes/class-wp-statistics-bootstrap.php CHANGED
@@ -362,8 +362,8 @@ namespace {
362
  $post_types = (array) get_post_types(array( 'show_ui' => true ), 'object');
363
 
364
  foreach ( $post_types as $type ) {
365
- add_action('manage_' . $type->name . '_posts_columns', 'wp_statistics_add_column', 10, 2);
366
- add_action('manage_' . $type->name . '_posts_custom_column', 'wp_statistics_render_column', 10, 2);
367
  }
368
  }
369
  }
362
  $post_types = (array) get_post_types(array( 'show_ui' => true ), 'object');
363
 
364
  foreach ( $post_types as $type ) {
365
+ add_action('manage_' . $type->name . '_posts_columns', 'WP_Statistics_Bootstrap::add_column', 10, 2);
366
+ add_action('manage_' . $type->name . '_posts_custom_column', 'WP_Statistics_Bootstrap::render_column', 10, 2);
367
  }
368
  }
369
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wp-statistics.com/donate/
4
  Tags: analytics, wordpress analytics, stats, statistics, visit, visitors, hits, chart, browser, today, yesterday, week, month, year, total, post, page, sidebar, google, live visit, search word, agent, google analytics, webmasters, google webmasters, geoip, location
5
  Requires at least: 3.0
6
  Tested up to: 4.9
7
- Stable tag: 12.2
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -287,6 +287,9 @@ You may also downgrade to WP Statistics 10.3 as a temporary measure, but no new
287
  This is a security fix, please update immediately.
288
 
289
  == Changelog ==
 
 
 
290
  = 12.2 =
291
  * The new version proves itself more than twice as faster because we had a lot of changes in the plugin.
292
  * Improvement: Many functions converted to classes.
4
  Tags: analytics, wordpress analytics, stats, statistics, visit, visitors, hits, chart, browser, today, yesterday, week, month, year, total, post, page, sidebar, google, live visit, search word, agent, google analytics, webmasters, google webmasters, geoip, location
5
  Requires at least: 3.0
6
  Tested up to: 4.9
7
+ Stable tag: 12.2.1
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
287
  This is a security fix, please update immediately.
288
 
289
  == Changelog ==
290
+ = 12.2.1 =
291
+ * Fixed: Issue to `add_column` callback.
292
+
293
  = 12.2 =
294
  * The new version proves itself more than twice as faster because we had a lot of changes in the plugin.
295
  * Improvement: Many functions converted to classes.
wp-statistics.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WP Statistics
4
  * Plugin URI: https://wp-statistics.com/
5
  * Description: Complete WordPress Analytics and Statistics for your site!
6
- * Version: 12.2
7
  * Author: Verona Labs
8
  * Author URI: http://veronalabs.com/
9
  *
3
  * Plugin Name: WP Statistics
4
  * Plugin URI: https://wp-statistics.com/
5
  * Description: Complete WordPress Analytics and Statistics for your site!
6
+ * Version: 12.2.1
7
  * Author: Verona Labs
8
  * Author URI: http://veronalabs.com/
9
  *