Version Description
- Fixed: issue to showing Hit column for custom post type.
- Improvement: Sanitize page's title and Escaping that in overview page.
- Added: postbox Ads in overview page. Don't worry! Not very annoying.
Download this release
Release Info
Developer | mostafa.s1990 |
Plugin | WP Statistics |
Version | 12.6.6.1 |
Comparing to | |
See all releases |
Code changes from version 12.6.6 to 12.6.6.1
- .gitignore +0 -26
- assets/images/welcome/visitor-ip.png +0 -0
- assets/images/welcome/what-is-new/coupon-code.png +0 -0
- assets/images/welcome/what-is-new/wp-telegram-channels.png +0 -0
- assets/images/welcome/what-is-new/wp-telegram-chatbox.gif +0 -0
- assets/images/welcome/what-is-new/wp-telegram-iphone-2.png +0 -0
- assets/images/welcome/what-is-new/wp-telegram-send.png +0 -0
- assets/images/welcome/what-is-new/wp-telegram-settings.png +0 -0
- includes/templates/welcome.php +68 -7
- readme.txt +2 -2
- wp-statistics.php +1 -1
.gitignore
DELETED
@@ -1,26 +0,0 @@
|
|
1 |
-
### macOS ###
|
2 |
-
*.DS_Store
|
3 |
-
.AppleDouble
|
4 |
-
.LSOverride
|
5 |
-
|
6 |
-
# Icon must end with two \r
|
7 |
-
Icon
|
8 |
-
|
9 |
-
# Thumbnails
|
10 |
-
._*
|
11 |
-
|
12 |
-
# Files that might appear in the root of a volume
|
13 |
-
.DocumentRevisions-V100
|
14 |
-
.fseventsd
|
15 |
-
.Spotlight-V100
|
16 |
-
.TemporaryItems
|
17 |
-
.Trashes
|
18 |
-
.VolumeIcon.icns
|
19 |
-
.com.apple.timemachine.donotpresent
|
20 |
-
|
21 |
-
# Directories potentially created on remote AFP share
|
22 |
-
.AppleDB
|
23 |
-
.AppleDesktop
|
24 |
-
Network Trash Folder
|
25 |
-
Temporary Items
|
26 |
-
.apdisk
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/images/welcome/visitor-ip.png
DELETED
Binary file
|
assets/images/welcome/what-is-new/coupon-code.png
ADDED
Binary file
|
assets/images/welcome/what-is-new/wp-telegram-channels.png
ADDED
Binary file
|
assets/images/welcome/what-is-new/wp-telegram-chatbox.gif
ADDED
Binary file
|
assets/images/welcome/what-is-new/wp-telegram-iphone-2.png
ADDED
Binary file
|
assets/images/welcome/what-is-new/wp-telegram-send.png
ADDED
Binary file
|
assets/images/welcome/what-is-new/wp-telegram-settings.png
ADDED
Binary file
|
includes/templates/welcome.php
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
<div class="wp-badge"><?php printf( __( 'Version %s', 'wp-statistics' ), WP_Statistics::$reg['version'] ); ?></div>
|
12 |
|
13 |
<h2 class="nav-tab-wrapper wp-clearfix">
|
14 |
-
<a href="#" class="nav-tab nav-tab-active" data-tab="whats-news"><?php _e( '
|
15 |
<a href="#" class="nav-tab" data-tab="addons"><?php _e( 'Add-Ons', 'wp-statistics' ); ?></a>
|
16 |
<a href="#" class="nav-tab" data-tab="credit"><?php _e( 'Credits', 'wp-statistics' ); ?></a>
|
17 |
<a href="#" class="nav-tab" data-tab="changelog"><?php _e( 'Changelog', 'wp-statistics' ); ?></a>
|
@@ -22,7 +22,12 @@
|
|
22 |
<section class="center-section">
|
23 |
<div class="left">
|
24 |
<div class="content-padding">
|
25 |
-
<h2
|
|
|
|
|
|
|
|
|
|
|
26 |
</div>
|
27 |
</div>
|
28 |
</section>
|
@@ -30,16 +35,72 @@
|
|
30 |
<section class="normal-section">
|
31 |
<div class="left">
|
32 |
<div class="content-padding">
|
33 |
-
<h2
|
34 |
-
<p
|
35 |
-
|
|
|
36 |
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
</div>
|
39 |
</div>
|
40 |
|
41 |
<div class="right text-center">
|
42 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
</div>
|
44 |
</section>
|
45 |
|
11 |
<div class="wp-badge"><?php printf( __( 'Version %s', 'wp-statistics' ), WP_Statistics::$reg['version'] ); ?></div>
|
12 |
|
13 |
<h2 class="nav-tab-wrapper wp-clearfix">
|
14 |
+
<a href="#" class="nav-tab nav-tab-active" data-tab="whats-news"><?php _e( 'New Product', 'wp-statistics' ); ?></a>
|
15 |
<a href="#" class="nav-tab" data-tab="addons"><?php _e( 'Add-Ons', 'wp-statistics' ); ?></a>
|
16 |
<a href="#" class="nav-tab" data-tab="credit"><?php _e( 'Credits', 'wp-statistics' ); ?></a>
|
17 |
<a href="#" class="nav-tab" data-tab="changelog"><?php _e( 'Changelog', 'wp-statistics' ); ?></a>
|
22 |
<section class="center-section">
|
23 |
<div class="left">
|
24 |
<div class="content-padding">
|
25 |
+
<h2><?php _e( 'WP-Telegram Notifications', 'wp-statistics' ); ?></h2>
|
26 |
+
<h4><?php echo sprintf( __( 'A new plugin from <a href="%s" target="_blank">VeronaLabs</a>.', 'wp-statistics' ), 'https://veronalabs.com' ); ?></h4>
|
27 |
+
|
28 |
+
<a href="https://wp-telegram.com/purchase/" target="_blank">
|
29 |
+
<img src="<?php echo plugins_url( 'wp-statistics/assets/images/welcome/what-is-new/coupon-code.png' ); ?>"/>
|
30 |
+
</a>
|
31 |
</div>
|
32 |
</div>
|
33 |
</section>
|
35 |
<section class="normal-section">
|
36 |
<div class="left">
|
37 |
<div class="content-padding">
|
38 |
+
<h2><?php _e( 'Connect with customers', 'wp-statistics' ); ?></h2>
|
39 |
+
<p><?php _e( 'Your customers can easily send their message using the box placed on your website.', 'wp-statistics' ); ?></p>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
|
43 |
+
<style>
|
44 |
+
div#wp-telegram-chatbox img {
|
45 |
+
width: 270px;
|
46 |
+
display: inline-block;
|
47 |
+
}
|
48 |
+
</style>
|
49 |
+
|
50 |
+
<div class="right text-center" id="wp-telegram-chatbox">
|
51 |
+
<img src="<?php echo plugins_url( 'wp-statistics/assets/images/welcome/what-is-new/wp-telegram-chatbox.gif' ); ?>"/>
|
52 |
+
<img src="<?php echo plugins_url( 'wp-statistics/assets/images/welcome/what-is-new/wp-telegram-iphone-2.png' ); ?>"/>
|
53 |
+
</div>
|
54 |
+
</section>
|
55 |
+
|
56 |
+
<section class="normal-section">
|
57 |
+
<div class="right">
|
58 |
+
<div class="content-padding">
|
59 |
+
<h2><?php _e( 'Send messages to your channels/Groups', 'wp-statistics' ); ?></h2>
|
60 |
+
<p><?php _e( 'Simply send any message through the WordPress admin panel to your channels or groups on the telegram. No need to add a person as an admin to the channel/group to add send messages.', 'wp-statistics' ); ?></p>
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
|
64 |
+
<div class="left text-center">
|
65 |
+
<img src="<?php echo plugins_url( 'wp-statistics/assets/images/welcome/what-is-new/wp-telegram-send.png' ); ?>"/>
|
66 |
+
</div>
|
67 |
+
</section>
|
68 |
+
|
69 |
+
<section class="normal-section">
|
70 |
+
<div class="left">
|
71 |
+
<div class="content-padding">
|
72 |
+
<h2><?php _e( 'Integrations & Notifications', 'wp-statistics' ); ?></h2>
|
73 |
+
<p><?php _e( 'Integrate with famous plugins such as WooCommerce, CF7, GravityForms, Quforms and EDD.', 'wp-statistics' ); ?></p>
|
74 |
+
<p><?php _e( 'For example: Receive the text of the messages sent in a form created with GravityForm on a particular channel or group. ', 'wp-statistics' ); ?></p>
|
75 |
</div>
|
76 |
</div>
|
77 |
|
78 |
<div class="right text-center">
|
79 |
+
<img src="<?php echo plugins_url( 'wp-statistics/assets/images/welcome/what-is-new/wp-telegram-settings.png' ); ?>"/>
|
80 |
+
</div>
|
81 |
+
</section>
|
82 |
+
|
83 |
+
<section class="normal-section">
|
84 |
+
<div class="right">
|
85 |
+
<div class="content-padding">
|
86 |
+
<h2><?php _e( 'Supports multiple channels or groups', 'wp-statistics' ); ?></h2>
|
87 |
+
<p><?php _e( 'You can add as many channels/groups as you want to the panel and arrange different tasks in different channels/groups.', 'wp-statistics' ); ?></p>
|
88 |
+
<p><?php _e( 'For example, different groups for sales, marketing, support or technical team.', 'wp-statistics' ); ?></p>
|
89 |
+
</div>
|
90 |
+
</div>
|
91 |
+
|
92 |
+
<div class="left text-center">
|
93 |
+
<img src="<?php echo plugins_url( 'wp-statistics/assets/images/welcome/what-is-new/wp-telegram-channels.png' ); ?>"/>
|
94 |
+
</div>
|
95 |
+
</section>
|
96 |
+
|
97 |
+
<section class="center-section">
|
98 |
+
<div class="left">
|
99 |
+
<div class="content-padding">
|
100 |
+
<a href="https://wp-telegram.com/purchase/" target="_blank">
|
101 |
+
<img src="<?php echo plugins_url( 'wp-statistics/assets/images/welcome/what-is-new/coupon-code.png' ); ?>"/>
|
102 |
+
</a>
|
103 |
+
</div>
|
104 |
</div>
|
105 |
</section>
|
106 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: analytics, wordpress analytics, stats, statistics, visit, visitors, hits,
|
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.2.1
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 12.6.6
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -126,7 +126,7 @@ http://yourwebsite.com/wp-json/wpstatistics/v1
|
|
126 |
To register, go to the Permalink page and update the permalink with press Save Changes.
|
127 |
|
128 |
== Changelog ==
|
129 |
-
= 12.6.6 =
|
130 |
* Fixed: issue to showing Hit column for custom post type.
|
131 |
* Improvement: Sanitize page's title and Escaping that in overview page.
|
132 |
* Added: postbox Ads in overview page. Don't worry! Not very annoying.
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.2.1
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 12.6.6.1
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
126 |
To register, go to the Permalink page and update the permalink with press Save Changes.
|
127 |
|
128 |
== Changelog ==
|
129 |
+
= 12.6.6.1 =
|
130 |
* Fixed: issue to showing Hit column for custom post type.
|
131 |
* Improvement: Sanitize page's title and Escaping that in overview page.
|
132 |
* Added: postbox Ads in overview page. Don't worry! Not very annoying.
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WP Statistics
|
4 |
* Plugin URI: https://wp-statistics.com/
|
5 |
* Description: Complete WordPress Analytics and Statistics for your site!
|
6 |
-
* Version: 12.6.6
|
7 |
* Author: VeronaLabs
|
8 |
* Author URI: http://veronalabs.com/
|
9 |
* Text Domain: wp-statistics
|
3 |
* Plugin Name: WP Statistics
|
4 |
* Plugin URI: https://wp-statistics.com/
|
5 |
* Description: Complete WordPress Analytics and Statistics for your site!
|
6 |
+
* Version: 12.6.6.1
|
7 |
* Author: VeronaLabs
|
8 |
* Author URI: http://veronalabs.com/
|
9 |
* Text Domain: wp-statistics
|