Page Visit Counter - Version 6.0.5

Version Description

  • 29-09-2020 =
  • Compatible with WooCommerce 4.5.x
  • Compatible with Wordpress 5.5.x
Download this release

Release Info

Developer dots
Plugin Icon 128x128 Page Visit Counter
Version 6.0.5
Comparing to
See all releases

Code changes from version 6.0.4 to 6.0.5

README.txt CHANGED
@@ -4,11 +4,11 @@ Plugin URI: https://www.thedotstore.com/
4
  Author: theDotstore
5
  Author URI: https://www.thedotstore.com/
6
  Contributors: dots, ketuchetan, chiragpatel, jitendrabanjara1991, niravcse006
7
- Stable tag: 6.0.4
8
- WC tested up to: 4.0
9
  Tags: page counter,page visit, post counter, post visit, wordpress post view, wordpress page view, page visit graph, post visit graph,
10
- Requires at least: 3.0
11
- Tested up to: 5.4.1
12
  Donate link:
13
  Copyright: (c) 2014-2016 Multidots Solutions PVT LTD (info@multidots.com)
14
  License: GPLv3 or later
@@ -17,9 +17,13 @@ License URI: http://www.gnu.org/licenses/gpl-3.0.html
17
  This plugin will count the total visits of your sites pages.
18
 
19
  == Description ==
20
- This Plugin used for front side post and pages counter. After activation of the plugin, You need to check checkbox from plugins setting. It will add page counter on the bottom of all pages. So, that all visitors can see page counts for entire site pages. The plugin provides search by page title and search by page published date facilities. Settings are required for page counter. The plugin provides to select specific post type to include in post /pages counter. The plugin also provides to exclude specific IP/s and specific register user to exude from post/pages counter.
21
 
22
- Plugin Demo : <a href ="http://pagevisitcounter.demo.store.multidots.com/" target="_blank">View Demo</a>
 
 
 
 
23
 
24
  = Page Counter Settings: =
25
  * In these options you can do different setting for page visit counter.
@@ -105,6 +109,9 @@ It is compatible from 2.1 to 5.0.3 WordPress version.
105
  Automatic updates should work great for you. As always, though, we recommend backing up your site prior to making any updates just to be sure nothing goes wrong.
106
 
107
  == Changelog ==
 
 
 
108
 
109
  = 6.0.4 - 22-05-2020 =
110
  * Compatible with WooCommerce 4.1.x
4
  Author: theDotstore
5
  Author URI: https://www.thedotstore.com/
6
  Contributors: dots, ketuchetan, chiragpatel, jitendrabanjara1991, niravcse006
7
+ Stable tag: 6.0.5
8
+ WC tested up to: 4.5
9
  Tags: page counter,page visit, post counter, post visit, wordpress post view, wordpress page view, page visit graph, post visit graph,
10
+ Requires at least: 5.0
11
+ Tested up to: 5.5
12
  Donate link:
13
  Copyright: (c) 2014-2016 Multidots Solutions PVT LTD (info@multidots.com)
14
  License: GPLv3 or later
17
  This plugin will count the total visits of your sites pages.
18
 
19
  == Description ==
20
+ This Plugin used for front side post and pages counter. After activation of the plugin, You need to check checkbox from plugins setting.
21
 
22
+ It will add page counter on the bottom of all pages. So, that all visitors can see page counts for entire site pages. The plugin provides search by page title and search by page published date facilities.
23
+
24
+ Settings are required for page counter. The plugin provides to select specific post type to include in post /pages counter. The plugin also provides to exclude specific IP/s and specific register user to exude from post/pages counter.
25
+
26
+ Plugin Demo : <a href ="https://pluginsdemo.thedotstore.com/page-visit-counter/" target="_blank">View Demo</a>
27
 
28
  = Page Counter Settings: =
29
  * In these options you can do different setting for page visit counter.
109
  Automatic updates should work great for you. As always, though, we recommend backing up your site prior to making any updates just to be sure nothing goes wrong.
110
 
111
  == Changelog ==
112
+ = 6.0.5 - 29-09-2020 =
113
+ * Compatible with WooCommerce 4.5.x
114
+ * Compatible with Wordpress 5.5.x
115
 
116
  = 6.0.4 - 22-05-2020 =
117
  * Compatible with WooCommerce 4.1.x
admin/class-page-visit-counter-admin.php CHANGED
@@ -631,7 +631,7 @@ class Page_Visit_Counter_Admin
631
  global $wpdb ;
632
  $reset_result_history = $wpdb->query( "TRUNCATE TABLE {$wpdb->prefix}page_visit_history" );
633
  //db call ok; no-cache ok
634
- $reset_result_referer = $wpdb->query( "TRUNCATE TABLE {$wpdb->prefix}wp_page_visit_referer" );
635
  //db call ok; no-cache ok
636
 
637
  if ( $reset_result_history === 1 && $reset_result_referer === 1 ) {
631
  global $wpdb ;
632
  $reset_result_history = $wpdb->query( "TRUNCATE TABLE {$wpdb->prefix}page_visit_history" );
633
  //db call ok; no-cache ok
634
+ $reset_result_referer = $wpdb->query( "TRUNCATE TABLE {$wpdb->prefix}page_visit_referer" );
635
  //db call ok; no-cache ok
636
 
637
  if ( $reset_result_history === 1 && $reset_result_referer === 1 ) {
page-visit-counter.php CHANGED
@@ -9,13 +9,13 @@
9
  * Plugin Name: Page Visit Counter
10
  * Plugin URI: https://www.thedotstore.com/page-visit-counter/
11
  * Description: This plugin will count the total visits of the pages of your site.
12
- * Version: 6.0.4
13
  * Author: theDotstore
14
  * Author URI: https://www.thedotstore.com/
15
  * License: GPL-2.0+
16
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
17
  * Domain Path: /languages
18
- * WC tested up to: 3.9
19
  */
20
  // If this file is called directly, abort.
21
  if ( !defined( 'ABSPATH' ) ) {
@@ -66,7 +66,7 @@ if ( !function_exists( 'pvc_fs' ) ) {
66
  }
67
 
68
  if ( !defined( 'PVCP_VERSION' ) ) {
69
- define( 'PVCP_VERSION', '6.0.4' );
70
  }
71
  if ( !defined( 'PVCP_PLUGIN_URL' ) ) {
72
  define( 'PVCP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
9
  * Plugin Name: Page Visit Counter
10
  * Plugin URI: https://www.thedotstore.com/page-visit-counter/
11
  * Description: This plugin will count the total visits of the pages of your site.
12
+ * Version: 6.0.5
13
  * Author: theDotstore
14
  * Author URI: https://www.thedotstore.com/
15
  * License: GPL-2.0+
16
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
17
  * Domain Path: /languages
18
+ * WC tested up to: 4.5
19
  */
20
  // If this file is called directly, abort.
21
  if ( !defined( 'ABSPATH' ) ) {
66
  }
67
 
68
  if ( !defined( 'PVCP_VERSION' ) ) {
69
+ define( 'PVCP_VERSION', '6.0.5' );
70
  }
71
  if ( !defined( 'PVCP_PLUGIN_URL' ) ) {
72
  define( 'PVCP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );