Page Visit Counter - Version 4.8

Version Description

  • 13-11-2018 =
  • compatible with php 7.2.0 version.
Download this release

Release Info

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

Code changes from version 4.7 to 4.8

README.txt CHANGED
@@ -4,10 +4,10 @@ Plugin URI: http://multidots.com/
4
  Author: Multidots
5
  Author URI: http://multidots.com/
6
  Contributors: dots, ketuchetan, chiragpatel, jitendrabanjara1991, thedotstore
7
- Stable tag: 4.7
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: 2.1
10
- Tested up to: 4.9.6
11
  Donate link:
12
  Copyright: (c) 2014-2016 Multidots Solutions PVT LTD (info@multidots.com)
13
  License: GPLv3 or later
@@ -16,7 +16,7 @@ License URI: http://www.gnu.org/licenses/gpl-3.0.html
16
  This plugin will count the total visits of your sites pages.
17
 
18
  == Description ==
19
- This Plugin use for front side post and pages counter. After activation of plugin it will automatically add page counts on bottom of all pages. So, that all visitors can see page counts for entire site pages. Plugin provide search by page title and search by page published date facilities. Settings are required for page counter. Plugin provide to select specific post type to include in post /pages counter. Plugin also provide to exclude specific IP/s and specific register user to exude from post/pages counter.
20
 
21
  Plugin Demo : <a href ="http://pagevisitcounter.demo.store.multidots.com/" target="_blank">View Demo</a>
22
 
@@ -107,7 +107,7 @@ In the search field type Page Visit Counter and click Search Plugins. Once you'v
107
 
108
  In which WordPress version this Plugin is compatible?
109
 
110
- It is compatible from 2.1 to 4.7 WordPress version.
111
 
112
  == Upgrade Notice ==
113
 
@@ -115,6 +115,9 @@ Automatic updates should work great for you. As always, though, we recommend ba
115
 
116
  == Changelog ==
117
 
 
 
 
118
  = 4.7 - 10-08-2018 =
119
  * minor bug fixed.
120
 
4
  Author: Multidots
5
  Author URI: http://multidots.com/
6
  Contributors: dots, ketuchetan, chiragpatel, jitendrabanjara1991, thedotstore
7
+ Stable tag: 4.8
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: 2.1
10
+ Tested up to: 4.9.8
11
  Donate link:
12
  Copyright: (c) 2014-2016 Multidots Solutions PVT LTD (info@multidots.com)
13
  License: GPLv3 or later
16
  This plugin will count the total visits of your sites pages.
17
 
18
  == Description ==
19
+ 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.
20
 
21
  Plugin Demo : <a href ="http://pagevisitcounter.demo.store.multidots.com/" target="_blank">View Demo</a>
22
 
107
 
108
  In which WordPress version this Plugin is compatible?
109
 
110
+ It is compatible from 2.1 to 4.9.8 WordPress version.
111
 
112
  == Upgrade Notice ==
113
 
115
 
116
  == Changelog ==
117
 
118
+ = 4.8 - 13-11-2018 =
119
+ * compatible with php 7.2.0 version.
120
+
121
  = 4.7 - 10-08-2018 =
122
  * minor bug fixed.
123
 
admin/class-page-visit-counter-admin.php CHANGED
@@ -614,9 +614,7 @@ class page_visit_counter_Admin
614
  page_id: page_id
615
  }),
616
  success: function (data) {
617
- console.log(data);
618
  var resultarr = JSON.parse(data);
619
- console.log(resultarr);
620
  if (resultarr != 'novisit') {
621
  topBrowsersArr = resultarr['topBrowserString'];
622
  topIpArr = resultarr['topIpString'];
@@ -705,7 +703,6 @@ class page_visit_counter_Admin
705
  //chartYearly.draw(dataYearly, optionschartYearly);
706
 
707
  jQuery(window).resize(function () {
708
- console.log('resize');
709
  chartBrowsers.draw(dataBrowsers, optionsBrowsers);
710
  chartIP.draw(view, optionschartIP);
711
  chartReferer.draw(dataReferer, optionschartReferer);
@@ -740,7 +737,6 @@ class page_visit_counter_Admin
740
  });
741
 
742
  jQuery(window).resize(function () {
743
- console.log('resize');
744
  chartBrowsers.draw(dataBrowsers, optionsBrowsers);
745
  chartIP.draw(view, optionschartIP);
746
  chartReferer.draw(dataReferer, optionschartReferer);
@@ -1739,7 +1735,11 @@ class My_Widget extends WP_Widget
1739
  }
1740
  }
1741
 
1742
- add_action('widgets_init', create_function('', 'return register_widget("My_Widget");'));
 
 
 
 
1743
 
1744
  function custom_admin_pointers()
1745
  {
614
  page_id: page_id
615
  }),
616
  success: function (data) {
 
617
  var resultarr = JSON.parse(data);
 
618
  if (resultarr != 'novisit') {
619
  topBrowsersArr = resultarr['topBrowserString'];
620
  topIpArr = resultarr['topIpString'];
703
  //chartYearly.draw(dataYearly, optionschartYearly);
704
 
705
  jQuery(window).resize(function () {
 
706
  chartBrowsers.draw(dataBrowsers, optionsBrowsers);
707
  chartIP.draw(view, optionschartIP);
708
  chartReferer.draw(dataReferer, optionschartReferer);
737
  });
738
 
739
  jQuery(window).resize(function () {
 
740
  chartBrowsers.draw(dataBrowsers, optionsBrowsers);
741
  chartIP.draw(view, optionschartIP);
742
  chartReferer.draw(dataReferer, optionschartReferer);
1735
  }
1736
  }
1737
 
1738
+ function pvc_init_widget ()
1739
+ {
1740
+ return register_widget('My_Widget');
1741
+ }
1742
+ add_action ('widgets_init', 'pvc_init_widget');
1743
 
1744
  function custom_admin_pointers()
1745
  {
page_visit_counter.php CHANGED
@@ -7,7 +7,7 @@
7
  * Plugin URI: http://www.multidots.com/
8
  * Description: This plugin will count the total visits of your sites pages.
9
  * Author: Multidots
10
- * Version: 4.7
11
  * Author URI: http://www.multidots.com/
12
  */
13
  // If this file is called directly, abort.
7
  * Plugin URI: http://www.multidots.com/
8
  * Description: This plugin will count the total visits of your sites pages.
9
  * Author: Multidots
10
+ * Version: 4.8
11
  * Author URI: http://www.multidots.com/
12
  */
13
  // If this file is called directly, abort.