Visitors Traffic Real Time Statistics - Version 5.4

Version Description

  1. Bug fixing - fix conflict with Dokan plugin
Download this release

Release Info

Developer osamaesh
Plugin Icon 128x128 Visitors Traffic Real Time Statistics
Version 5.4
Comparing to
See all releases

Code changes from version 5.3 to 5.4

Visitors-Traffic-Real-Time-Statistics.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Visitor Traffic Real Time Statistics
4
  Description: Hits counter that shows analytical numbers of your WordPress site visitors and hits.
5
  Author: wp-buy
6
  Author URI: https://www.wp-buy.com/
7
- Version: 5.3
8
  Text Domain: visitors-traffic-real-time-statistics
9
  Domain Path: /languages
10
  */
4
  Description: Hits counter that shows analytical numbers of your WordPress site visitors and hits.
5
  Author: wp-buy
6
  Author URI: https://www.wp-buy.com/
7
+ Version: 5.4
8
  Text Domain: visitors-traffic-real-time-statistics
9
  Domain Path: /languages
10
  */
functions.php CHANGED
@@ -85,6 +85,25 @@ function ahcfree_localtime($dateformat)
85
 
86
 
87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  function ahcfree_getVisitsTime()
89
  {
90
  global $wpdb;
85
 
86
 
87
 
88
+ function vtrts_free_remove_dokan_js_files() {
89
+ if(isset($_GET['page']) && $_GET['page'] == 'ahc_hits_counter_menu_free'){
90
+ wp_dequeue_script( 'dokan-tinymce-plugin' );
91
+ wp_deregister_script( 'dokan-tinymce-plugin' );
92
+ wp_dequeue_script( 'dokan-moment' );
93
+ wp_deregister_script( 'dokan-moment' );
94
+ wp_dequeue_script( 'dokan-chart' );
95
+ wp_deregister_script( 'dokan-chart' );
96
+ wp_dequeue_script( 'vue-vendor' );
97
+ wp_deregister_script( 'vue-vendor' );
98
+ wp_dequeue_script( 'dokan-promo-notice-js' );
99
+ wp_deregister_script( 'dokan-promo-notice-js' );
100
+ wp_dequeue_script( 'dps-custom-admin-js' );
101
+ wp_deregister_script( 'dps-custom-admin-js' );
102
+ }
103
+ }
104
+ add_action( 'admin_print_scripts', 'vtrts_free_remove_dokan_js_files', 1 );
105
+
106
+
107
  function ahcfree_getVisitsTime()
108
  {
109
  global $wpdb;
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wp-buy, osamaesh
3
  Tags: visitor, traffic, statistics, analytics, stats, online, Visit, WordPress analytics ,visitors online, count visitor, google analytics, analytics, GeoIP, Geo locations, analytics dashboard, visits, chart, browser, blog, today, yesterday, week, month, wp Statistics, year, post, page, sidebar, summary, feedburner, hits, pagerank, google, histats, alexa, live visit, counter, diagram, graph
4
  Requires at least: 3.0.1
5
  Tested up to: 5.9.1
6
- Stable tag: 5.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -150,6 +150,10 @@ This plugin supports IPv6; however, PHP must be compiled with IPv6 support enabl
150
 
151
  == Changelog ==
152
 
 
 
 
 
153
  = 5.3 =
154
  1. Bug fixing in the plugin accessibility
155
 
3
  Tags: visitor, traffic, statistics, analytics, stats, online, Visit, WordPress analytics ,visitors online, count visitor, google analytics, analytics, GeoIP, Geo locations, analytics dashboard, visits, chart, browser, blog, today, yesterday, week, month, wp Statistics, year, post, page, sidebar, summary, feedburner, hits, pagerank, google, histats, alexa, live visit, counter, diagram, graph
4
  Requires at least: 3.0.1
5
  Tested up to: 5.9.1
6
+ Stable tag: 5.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
150
 
151
  == Changelog ==
152
 
153
+ = 5.4 =
154
+ 1. Bug fixing - fix conflict with Dokan plugin
155
+
156
+
157
  = 5.3 =
158
  1. Bug fixing in the plugin accessibility
159