ExtraWatch LIVE! (Live Stats, Heatmap, Click tracking, SEO Reports and more)
This is a successor for popular native extensions ExtraWatch FREE/PRO. With this version, data are stored in encrypted way in the cloud, and script is loaded asynchronously, so there is no performance impact on your website. On activation, plugin creates temporary project, which you can connect to your user credentials later. Analyze your visitor behaviour, optimize website and then increase conversions and sales. Once called the “Swiss Army Knife” for every WordPress website. See map of clicks on Heatmap, Facebook, Twitter and other Media If you’re using static plugins like WP Slimstat, this plugin will give you completely different real-time experience. Support The ExtraWatch team does not provide support for the plugin on the WordPress.org forums. Support is available to people who bought the PRO version of the plugin only. Note that the ExtraWatch LIVE! plugin has several extra features too so it might be well worth your investment! features: See map of clicks on Heatmap see the most “active” spots of your website, optimize page to get better conversions and sales monitoring of unique ids of clicked elements and possibility to set them as goals and watch how it changes in time tracks also link clicks Monitor User activity detect last user activity report and send alert emails when users share same login from different IP Facebook, Twitter and other Media detection from where your users came from such as: facebook, twitter, RSS, etc. Mobile devices detection detect most common Android, iOS and other devices and their types Check Search Engines Reports check percentage of traffic from search engines list of keywords by which users found your website and their stats increase and decrease of search result position and their trends list of most common unique keyphrases so you can export them to 3rd party tool to monitor and increase search rank position Traffic Flow an interactive HTML5 chart of flow of traffic between your pages Live Stats allows you to “watch” your visitors as they come to your website in real time total time of each user session monitor when user has left the website, marking session as inactive Nightly Email Reports summary report sent overnight so you can chech how your site performs in the morning Goals allows you to track various types of user actions, such as: visited page, page title, username, IP address, came from, country, URL and Form parameters, option to block or redirect such users import / export goals Graphs section contains daily and weekly bar charts for pages, goals, users .. etc. History same as live stats but for previous days Settings various configuration params + 32 world languages Other asynchronous tracking – does not affect page speed possibility to use also cloud-based version which stores data on 3rd party server Not found any other feature? ask for it using live chat or open a support ticke For more information and demos please visit: http://www.extrawatch.com translations: brazilian portuguese, dutch, french, german, greek, russian, slovak, slovenian, spanish, swedish, czech, danish, lithuanian, polish italian, turkish, latvian, ukrainian, bulgarian Arbitrary section
Top keywords
- website7×1.38%
- user6×1.18%
- users5×0.98%
- extrawatch4×0.79%
- goals4×0.79%
- live4×0.79%
- page4×0.79%
- search4×0.79%
- support4×0.79%
- clicks3×0.59%
- facebook3×0.59%
- facebook twitter3×0.59%
Post Author IP
This plugin records the IP address of the original post author when a post first gets created. The admin listing of posts is amended with a new “Author IP” column that shows the IP address of the author who first saved the post. The plugin is unable to provide IP address information for posts that were created prior to the use of this plugin. Links: Plugin Homepage | Plugin Directory Page | GitHub | Author Homepage Hooks The plugin is further customizable via four filters. Typically, code making use of filters should ideally be put into a mu-plugin or site-specific plugin (which is beyond the scope of this readme to explain). c2c_show_post_author_ip_column (filter) The ‘c2c_show_post_author_ip_column’ filter allows you to determine if the post author IP column should appear in the admin post listing table. Your hooking function can be sent 1 argument: Argument : $show_column (bool) Should the column be shown? Default true. Example: /** * Don't show the post author IP column except to admins. * * @param bool $show_column Should the column be shown? Default true. * @return bool */ function post_author_ip_column_admin_only( $show ) { if ( ! current_user_can( 'manage_options' ) ) { $show = false; } return $show; } add_filter( 'c2c_show_post_author_ip_column', 'post_author_ip_column_admin_only' ); c2c_get_post_author_ip (filter) The ‘c2c_get_post_author_ip’ filter allows you to customize the value stored as the post author IP address. Your hooking function can be sent 2 arguments: Arguments : $ip (string) The post author IP address. $post_id (int) The post ID. Example: /** * Store all IP addresses from local subnet IP addresses as the same IP address. * * @param string $ip The post author IP address. * @param int $post_id The post ID. * @return string */ function customize_post_author_ip( $ip, $post_id ) { if ( 0 === strpos( $ip, '192.168.' ) ) { $ip = '192.168.1.1'; } return $ip; } add_filter( 'c2c_get_post_author_ip', 'customize_post_author_ip', 10, 2 ); c2c_get_current_user_ip (filter) The ‘c2c_get_current_user_ip’ filter allows you to customize the current user’s IP address, as used by the plugin. Your hooking function can be sent 1 argument: Argument : $ip (string) The post author IP address. Example: /** * Overrides localhost IP address. * * @param string $ip The post author IP address. * @param int $post_id The post ID. * @return string */ function customize_post_author_ip( $ip, $post_id ) { if ( 0 === strpos( $ip, '192.168.' ) ) { $ip = '192.168.1.1'; } return $ip; } add_filter( 'c2c_get_post_author_ip', 'customize_post_author_ip', 10, 2 ); c2c_post_author_ip_allowed (filter) The ‘c2c_post_author_ip_allowed’ filter allows you to determine on a per-post basis if the post author IP should be stored. Your hooking function can be sent 3 arguments: Arguments : $allowed (bool) Can post author IP be saved for post? Default true. $post_id (int) The post ID. $ip (string) The post author IP address. Example: /** * Don't bother storing localhost IP addresses. * * @param bool $allowed Can post author IP be saved for post? Default true. * @param int $post_id The post ID. * @param string $ip The post author IP address. * @return string */ function disable_localhost_post_author_ips( $allowed, $post_id, $ip ) { if ( $allowed && 0 === strpos( $ip, '192.168.' ) ) { $allowed = false; } return $allowed; } add_filter( 'c2c_post_author_ip_allowed', 'disable_localhost_post_author_ips', 10, 3 );