Version Description
- 25-11-2020 =
- Minor bug fixed
Download this release
Release Info
Developer | dots |
Plugin | Page Visit Counter |
Version | 6.0.7 |
Comparing to | |
See all releases |
Code changes from version 6.0.6 to 6.0.7
- README.txt +4 -1
- includes/class-page-visit-counter.php +0 -8
- page-visit-counter.php +2 -2
- public/class-page-visit-counter-public.php +0 -13
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.
|
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
|
@@ -109,6 +109,9 @@ It is compatible from 2.1 to 5.0.3 WordPress version.
|
|
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.6 - 20-11-2020 =
|
113 |
* Maintanence Release
|
114 |
|
4 |
Author: theDotstore
|
5 |
Author URI: https://www.thedotstore.com/
|
6 |
Contributors: dots, ketuchetan, chiragpatel, jitendrabanjara1991, niravcse006
|
7 |
+
Stable tag: 6.0.7
|
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
|
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.7 - 25-11-2020 =
|
113 |
+
* Minor bug fixed
|
114 |
+
|
115 |
= 6.0.6 - 20-11-2020 =
|
116 |
* Maintanence Release
|
117 |
|
includes/class-page-visit-counter.php
CHANGED
@@ -231,14 +231,6 @@ class Page_Visit_Counter
|
|
231 |
99
|
232 |
);
|
233 |
}
|
234 |
-
|
235 |
-
$this->loader->add_filter(
|
236 |
-
'woocommerce_paypal_args',
|
237 |
-
$plugin_public,
|
238 |
-
'pvcp_paypal_bn_code_filter',
|
239 |
-
99,
|
240 |
-
1
|
241 |
-
);
|
242 |
}
|
243 |
|
244 |
/**
|
231 |
99
|
232 |
);
|
233 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
}
|
235 |
|
236 |
/**
|
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.
|
13 |
* Author: theDotstore
|
14 |
* Author URI: https://www.thedotstore.com/
|
15 |
* License: GPL-2.0+
|
@@ -66,7 +66,7 @@ if ( !function_exists( 'pvc_fs' ) ) {
|
|
66 |
}
|
67 |
|
68 |
if ( !defined( 'PVCP_VERSION' ) ) {
|
69 |
-
define( 'PVCP_VERSION', '6.0.
|
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.7
|
13 |
* Author: theDotstore
|
14 |
* Author URI: https://www.thedotstore.com/
|
15 |
* License: GPL-2.0+
|
66 |
}
|
67 |
|
68 |
if ( !defined( 'PVCP_VERSION' ) ) {
|
69 |
+
define( 'PVCP_VERSION', '6.0.7' );
|
70 |
}
|
71 |
if ( !defined( 'PVCP_PLUGIN_URL' ) ) {
|
72 |
define( 'PVCP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
public/class-page-visit-counter-public.php
CHANGED
@@ -702,18 +702,5 @@ class Page_Visit_Counter_Public
|
|
702 |
|
703 |
echo $content . ' ' . $totalWebsiteVisitsHtml ;
|
704 |
}
|
705 |
-
|
706 |
-
/**
|
707 |
-
* BN code added
|
708 |
-
*
|
709 |
-
* @param $paypal_args
|
710 |
-
*
|
711 |
-
* @return mixed
|
712 |
-
*/
|
713 |
-
function pvcp_paypal_bn_code_filter( $paypal_args )
|
714 |
-
{
|
715 |
-
$paypal_args['bn'] = 'Multidots_SP';
|
716 |
-
return $paypal_args;
|
717 |
-
}
|
718 |
|
719 |
}
|
702 |
|
703 |
echo $content . ' ' . $totalWebsiteVisitsHtml ;
|
704 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
705 |
|
706 |
}
|