Page Visit Counter - Version 6.0.2

Version Description

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.

Download this release

Release Info

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

Code changes from version 6.0.1 to 6.0.2

README.txt CHANGED
@@ -4,7 +4,7 @@ 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.1
8
  Tags: page counter,page visit, post counter, post visit, wordpress post view, wordpress page view, page visit graph, post visit graph,
9
  Requires at least: 3.0
10
  Tested up to: 5.2.2
@@ -155,6 +155,10 @@ Automatic updates should work great for you. As always, though, we recommend ba
155
 
156
  == Changelog ==
157
 
 
 
 
 
158
  = 6.0.1 - 09-09-2019 =
159
  * Fixed Migration Script which is display as a fatal error with stop execution.
160
 
4
  Author: Thedotstore
5
  Author URI: https://www.thedotstore.com/
6
  Contributors: dots, ketuchetan, chiragpatel, jitendrabanjara1991, niravcse006
7
+ Stable tag: 6.0.2
8
  Tags: page counter,page visit, post counter, post visit, wordpress post view, wordpress page view, page visit graph, post visit graph,
9
  Requires at least: 3.0
10
  Tested up to: 5.2.2
155
 
156
  == Changelog ==
157
 
158
+ = 6.0.1 - 20-11-2019 =
159
+ * Compatible with Wordpress 5.3.x
160
+ * Compatible with WooCommerce 3.8.x
161
+
162
  = 6.0.1 - 09-09-2019 =
163
  * Fixed Migration Script which is display as a fatal error with stop execution.
164
 
includes/class-page-visit-counter.php CHANGED
@@ -227,6 +227,7 @@ class Page_Visit_Counter
227
  99
228
  );
229
  }
 
230
 
231
  }
232
 
227
  99
228
  );
229
  }
230
+ $this->loader->add_action('woocommerce_paypal_args', $plugin_public, 'paypal_bn_code_filter_page_visit_count', 99, 1);
231
 
232
  }
233
 
page-visit-counter.php CHANGED
@@ -9,7 +9,7 @@
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.1
13
  * Author: Thedotstore
14
  * Author URI: https://www.thedotstore.com/
15
  * License: GPL-2.0+
@@ -65,7 +65,7 @@ if ( !function_exists( 'pvc_fs' ) ) {
65
  }
66
 
67
  if ( !defined( 'PVCP_VERSION' ) ) {
68
- define( 'PVCP_VERSION', '6.0.1' );
69
  }
70
  if ( !defined( 'PVCP_PLUGIN_URL' ) ) {
71
  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.2
13
  * Author: Thedotstore
14
  * Author URI: https://www.thedotstore.com/
15
  * License: GPL-2.0+
65
  }
66
 
67
  if ( !defined( 'PVCP_VERSION' ) ) {
68
+ define( 'PVCP_VERSION', '6.0.2' );
69
  }
70
  if ( !defined( 'PVCP_PLUGIN_URL' ) ) {
71
  define( 'PVCP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
public/class-page-visit-counter-public.php CHANGED
@@ -703,4 +703,17 @@ class Page_Visit_Counter_Public
703
  echo $content . ' ' . $totalWebsiteVisitsHtml ;
704
  }
705
 
 
 
 
 
 
 
 
 
 
 
 
 
 
706
  }
703
  echo $content . ' ' . $totalWebsiteVisitsHtml ;
704
  }
705
 
706
+ /**
707
+ * BN code added
708
+ *
709
+ * @param $paypal_args
710
+ *
711
+ * @return mixed
712
+ */
713
+ function paypal_bn_code_filter_page_visit_count( $paypal_args ) {
714
+ $paypal_args['bn'] = 'Multidots_SP';
715
+
716
+ return $paypal_args;
717
+ }
718
+
719
  }