Version Description
- Release Date: January 18, 2016
- Fixed: If you re-ordered the widgets on the overview screen and then reloaded the page, all the widgets would disappear.
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 10.0.1 |
Comparing to | |
See all releases |
Code changes from version 10.0 to 10.0.1
- assets/css/log.css +9 -9
- includes/log/log.php +8 -6
- readme.txt +5 -1
- wp-statistics.php +2 -2
assets/css/log.css
CHANGED
@@ -1,36 +1,36 @@
|
|
1 |
|
2 |
-
#
|
3 |
width: 30%;
|
4 |
float: left;
|
5 |
}
|
6 |
-
#
|
7 |
margin: 0 0 0 1%;
|
8 |
width: 68%;
|
9 |
float: right;
|
10 |
}
|
11 |
@media screen and (max-width: 960px) {
|
12 |
-
#
|
13 |
width: 35%;
|
14 |
}
|
15 |
-
#
|
16 |
margin: 0 0 0 1%;
|
17 |
width: 63%;
|
18 |
}
|
19 |
}
|
20 |
@media screen and (max-width: 758px) {
|
21 |
-
#
|
22 |
width: 100%;
|
23 |
}
|
24 |
-
#
|
25 |
margin: 0 0 0 1%;
|
26 |
width: 100%;
|
27 |
}
|
28 |
}
|
29 |
@media screen and (max-width: 524px) {
|
30 |
-
#
|
31 |
width: 100%;
|
32 |
}
|
33 |
-
#
|
34 |
margin: 0 0 0 1%;
|
35 |
width: 100%;
|
36 |
}
|
@@ -39,7 +39,7 @@
|
|
39 |
width: 100%;
|
40 |
direction: ltr;
|
41 |
}
|
42 |
-
#
|
43 |
text-decoration: none;
|
44 |
}
|
45 |
#summary-stats {
|
1 |
|
2 |
+
#wps-postbox-container-1 {
|
3 |
width: 30%;
|
4 |
float: left;
|
5 |
}
|
6 |
+
#wps-postbox-container-2 {
|
7 |
margin: 0 0 0 1%;
|
8 |
width: 68%;
|
9 |
float: right;
|
10 |
}
|
11 |
@media screen and (max-width: 960px) {
|
12 |
+
#wps-postbox-container-1 {
|
13 |
width: 35%;
|
14 |
}
|
15 |
+
#wps-postbox-container-2 {
|
16 |
margin: 0 0 0 1%;
|
17 |
width: 63%;
|
18 |
}
|
19 |
}
|
20 |
@media screen and (max-width: 758px) {
|
21 |
+
#wps-postbox-container-1 {
|
22 |
width: 100%;
|
23 |
}
|
24 |
+
#wps-postbox-container-2 {
|
25 |
margin: 0 0 0 1%;
|
26 |
width: 100%;
|
27 |
}
|
28 |
}
|
29 |
@media screen and (max-width: 524px) {
|
30 |
+
#wps-postbox-container-1 {
|
31 |
width: 100%;
|
32 |
}
|
33 |
+
#wps-postbox-container-2 {
|
34 |
margin: 0 0 0 1%;
|
35 |
width: 100%;
|
36 |
}
|
39 |
width: 100%;
|
40 |
direction: ltr;
|
41 |
}
|
42 |
+
#wps-postbox-container-1 a, #wps-postbox-container-2 a, #last-log a {
|
43 |
text-decoration: none;
|
44 |
}
|
45 |
#summary-stats {
|
includes/log/log.php
CHANGED
@@ -25,12 +25,14 @@
|
|
25 |
<?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false ); ?>
|
26 |
<?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false ); ?>
|
27 |
|
28 |
-
<div class="metabox-holder
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
34 |
</div>
|
35 |
</div>
|
36 |
<?php
|
25 |
<?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false ); ?>
|
26 |
<?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false ); ?>
|
27 |
|
28 |
+
<div class="metabox-holder" id="overview-widgets">
|
29 |
+
<div class="postbox-container" id="wps-postbox-container-1">
|
30 |
+
<?php do_meta_boxes( $WP_Statistics->menu_slugs['overview'], 'side', '' ); ?>
|
31 |
+
</div>
|
32 |
+
|
33 |
+
<div class="postbox-container" id="wps-postbox-container-2">
|
34 |
+
<?php do_meta_boxes( $WP_Statistics->menu_slugs['overview'], 'normal', '' ); ?>
|
35 |
+
</div>
|
36 |
</div>
|
37 |
</div>
|
38 |
<?php
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wp-statistics.com/donate/
|
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 10.0
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
@@ -238,6 +238,10 @@ If you still have issues open a new thread on the support forum and we'll try an
|
|
238 |
The overview page has been completely rewritten! If you had set custom values for what widgets to display and in what order on your overview page you will have to re-select them using the "Screen Options" tab on the overview page and by dragging and dropping the widgets in to place.
|
239 |
|
240 |
== Changelog ==
|
|
|
|
|
|
|
|
|
241 |
= 10.0 =
|
242 |
* Release Date: January 15, 2016
|
243 |
* Added: Widgets now support reloading on overview and dashboard screen.
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 10.0.1
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
238 |
The overview page has been completely rewritten! If you had set custom values for what widgets to display and in what order on your overview page you will have to re-select them using the "Screen Options" tab on the overview page and by dragging and dropping the widgets in to place.
|
239 |
|
240 |
== Changelog ==
|
241 |
+
= 10.0.1 =
|
242 |
+
* Release Date: January 18, 2016
|
243 |
+
* Fixed: If you re-ordered the widgets on the overview screen and then reloaded the page, all the widgets would disappear.
|
244 |
+
|
245 |
= 10.0 =
|
246 |
* Release Date: January 15, 2016
|
247 |
* Added: Widgets now support reloading on overview and dashboard screen.
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
-
Version: 10.0
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
@@ -12,7 +12,7 @@ License: GPL2
|
|
12 |
*/
|
13 |
|
14 |
// These defines are used later for various reasons.
|
15 |
-
define('WP_STATISTICS_VERSION', '10.0');
|
16 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
17 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
|
18 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
+
Version: 10.0.1
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
12 |
*/
|
13 |
|
14 |
// These defines are used later for various reasons.
|
15 |
+
define('WP_STATISTICS_VERSION', '10.0.1');
|
16 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
17 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
|
18 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|