Changeset 2275950
- Timestamp:
- 04/04/2020 06:02:31 PM (6 years ago)
- Location:
- who-hit-the-page-hit-counter
- Files:
-
- 12 deleted
- 12 edited
- 1 copied
-
tags/1.4.14.3 (copied) (copied from who-hit-the-page-hit-counter/trunk)
-
tags/1.4.14.3/composer.json (deleted)
-
tags/1.4.14.3/includes/class-whtp-admin.php (modified) (1 diff)
-
tags/1.4.14.3/package.json (deleted)
-
tags/1.4.14.3/partials/help.php (modified) (1 diff)
-
tags/1.4.14.3/partials/view/visitor-info.php (modified) (1 diff)
-
tags/1.4.14.3/readme.txt (modified) (1 diff)
-
tags/1.4.14.3/vendor/composer/autoload_real.php (modified) (1 diff)
-
tags/1.4.14.3/vendor/composer/ca-bundle (deleted)
-
tags/1.4.14.3/vendor/geoip2 (deleted)
-
tags/1.4.14.3/vendor/maxmind (deleted)
-
tags/1.4.14.3/vendor/maxmind-db (deleted)
-
tags/1.4.14.3/who-hit-the-page.php (modified) (2 diffs)
-
trunk/composer.json (deleted)
-
trunk/includes/class-whtp-admin.php (modified) (1 diff)
-
trunk/package.json (deleted)
-
trunk/partials/help.php (modified) (1 diff)
-
trunk/partials/view/visitor-info.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (1 diff)
-
trunk/vendor/composer/ca-bundle (deleted)
-
trunk/vendor/geoip2 (deleted)
-
trunk/vendor/maxmind (deleted)
-
trunk/vendor/maxmind-db (deleted)
-
trunk/who-hit-the-page.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
who-hit-the-page-hit-counter/tags/1.4.14.3/includes/class-whtp-admin.php
r2248819 r2275950 100 100 if ( ! get_option( 'whtp_geolocation_api', false ) ) : 101 101 $message = sprintf( 102 __( 'Since version %1$s, you have to choose a Geolocation service that must be used by %2 %s plugin otherwise the information gathered will be limited. You may choose a Geolocation service under the Geolocation Integration section in the %3$s', 'whtp' ),102 __( 'Since version %1$s, you have to choose a Geolocation service that must be used by %2$s plugin otherwise the information gathered will be limited. You may choose a Geolocation service under the Geolocation Integration section in the %3$s', 'whtp' ), 103 103 '1.4.14.2', 104 104 'Who Hit The Page Hit Counter', -
who-hit-the-page-hit-counter/tags/1.4.14.3/partials/help.php
r2208035 r2275950 13 13 </div> 14 14 <div class="mdl-card__supporting-text mdl-color-text--grey-600"> 15 <p><?php e sc_attr_e( '1. Add the shortcode tp any page you want to count. The shortcode is <code>[whohit]Page Name[/whohit]</code>.', 'whtp' ); ?></p>15 <p><?php echo wp_kses_post( '1. Add the shortcode tp any page you want to count. The shortcode is <code>[whohit]Page Name[/whohit]</code>.', 'whtp' ); ?></p> 16 16 <p><?php esc_attr_e( '2. After addin the shortcode to the page, visit the page once and then check if the page is added in the "Who Hit The Page > View Page Hits" page.', 'whtp' ); ?></p> 17 17 <p><?php esc_attr_e( '3. Go to the "Settings" page under "Who Hit The Page - Hit Counter", then under "Uninstall Settings" choose an option that is suitable to your needs and click "Update Options". This is an impotant decision that you need to make regarding the action that should be taken when uninstalling the plugin.', 'whtp' ); ?></p> -
who-hit-the-page-hit-counter/tags/1.4.14.3/partials/view/visitor-info.php
r2248819 r2275950 235 235 <li> 236 236 <span class="welcome-icon welcome-learn-more"> 237 <?php esc_attr_e( 'Included the shortcode <code>[whohit]Page Name[/whohit]</code> on your pages. If not, click get started below.', 'whtp' ); ?>237 <?php wp_kses_post( 'Included the shortcode <code>[whohit]Page Name[/whohit]</code> on your pages. If not, click get started below.', 'whtp' ); ?> 238 238 </span> 239 239 </li> -
who-hit-the-page-hit-counter/tags/1.4.14.3/readme.txt
r2248819 r2275950 67 67 68 68 == Changelog == 69 70 = 1.4.14.3 = 71 72 * Updated: WordPress 5.4 Compatibility 69 73 70 74 = 1.4.14.2 = -
who-hit-the-page-hit-counter/tags/1.4.14.3/vendor/composer/autoload_real.php
r2208035 r2275950 14 14 } 15 15 16 /** 17 * @return \Composer\Autoload\ClassLoader 18 */ 16 19 public static function getLoader() 17 20 { -
who-hit-the-page-hit-counter/tags/1.4.14.3/who-hit-the-page.php
r2248819 r2275950 7 7 * Plugin URI: https://whohit.co.za/who-hit-the-page-hit-counter 8 8 * Description: Lets you know who visted your pages by adding an invisible page hit counter on your website, so you know how many times a page has been visited in total and how many times each user identified by IP address has visited each page. You will also know the IP addresses of your visitors and relate the IP addresses to the country of the visitor and all browsers used by that IP/user. 9 * Version: 1.4.14. 29 * Version: 1.4.14.3 10 10 * Author: mahlamusa 11 11 * Author URI: http://lindeni.co.za … … 35 35 } 36 36 37 define( 'WHTP_VERSION', '1.4.14. 2' );37 define( 'WHTP_VERSION', '1.4.14.3' ); 38 38 define( 'WHTP_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) ); 39 39 define( 'WHTP_INCLUDES_DIR', plugin_dir_path( __FILE__ ) . 'includes/' ); -
who-hit-the-page-hit-counter/trunk/includes/class-whtp-admin.php
r2248819 r2275950 100 100 if ( ! get_option( 'whtp_geolocation_api', false ) ) : 101 101 $message = sprintf( 102 __( 'Since version %1$s, you have to choose a Geolocation service that must be used by %2 %s plugin otherwise the information gathered will be limited. You may choose a Geolocation service under the Geolocation Integration section in the %3$s', 'whtp' ),102 __( 'Since version %1$s, you have to choose a Geolocation service that must be used by %2$s plugin otherwise the information gathered will be limited. You may choose a Geolocation service under the Geolocation Integration section in the %3$s', 'whtp' ), 103 103 '1.4.14.2', 104 104 'Who Hit The Page Hit Counter', -
who-hit-the-page-hit-counter/trunk/partials/help.php
r2208035 r2275950 13 13 </div> 14 14 <div class="mdl-card__supporting-text mdl-color-text--grey-600"> 15 <p><?php e sc_attr_e( '1. Add the shortcode tp any page you want to count. The shortcode is <code>[whohit]Page Name[/whohit]</code>.', 'whtp' ); ?></p>15 <p><?php echo wp_kses_post( '1. Add the shortcode tp any page you want to count. The shortcode is <code>[whohit]Page Name[/whohit]</code>.', 'whtp' ); ?></p> 16 16 <p><?php esc_attr_e( '2. After addin the shortcode to the page, visit the page once and then check if the page is added in the "Who Hit The Page > View Page Hits" page.', 'whtp' ); ?></p> 17 17 <p><?php esc_attr_e( '3. Go to the "Settings" page under "Who Hit The Page - Hit Counter", then under "Uninstall Settings" choose an option that is suitable to your needs and click "Update Options". This is an impotant decision that you need to make regarding the action that should be taken when uninstalling the plugin.', 'whtp' ); ?></p> -
who-hit-the-page-hit-counter/trunk/partials/view/visitor-info.php
r2248819 r2275950 235 235 <li> 236 236 <span class="welcome-icon welcome-learn-more"> 237 <?php esc_attr_e( 'Included the shortcode <code>[whohit]Page Name[/whohit]</code> on your pages. If not, click get started below.', 'whtp' ); ?>237 <?php wp_kses_post( 'Included the shortcode <code>[whohit]Page Name[/whohit]</code> on your pages. If not, click get started below.', 'whtp' ); ?> 238 238 </span> 239 239 </li> -
who-hit-the-page-hit-counter/trunk/readme.txt
r2248819 r2275950 67 67 68 68 == Changelog == 69 70 = 1.4.14.3 = 71 72 * Updated: WordPress 5.4 Compatibility 69 73 70 74 = 1.4.14.2 = -
who-hit-the-page-hit-counter/trunk/vendor/composer/autoload_real.php
r2208035 r2275950 14 14 } 15 15 16 /** 17 * @return \Composer\Autoload\ClassLoader 18 */ 16 19 public static function getLoader() 17 20 { -
who-hit-the-page-hit-counter/trunk/who-hit-the-page.php
r2248819 r2275950 7 7 * Plugin URI: https://whohit.co.za/who-hit-the-page-hit-counter 8 8 * Description: Lets you know who visted your pages by adding an invisible page hit counter on your website, so you know how many times a page has been visited in total and how many times each user identified by IP address has visited each page. You will also know the IP addresses of your visitors and relate the IP addresses to the country of the visitor and all browsers used by that IP/user. 9 * Version: 1.4.14. 29 * Version: 1.4.14.3 10 10 * Author: mahlamusa 11 11 * Author URI: http://lindeni.co.za … … 35 35 } 36 36 37 define( 'WHTP_VERSION', '1.4.14. 2' );37 define( 'WHTP_VERSION', '1.4.14.3' ); 38 38 define( 'WHTP_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) ); 39 39 define( 'WHTP_INCLUDES_DIR', plugin_dir_path( __FILE__ ) . 'includes/' );
Note: See TracChangeset
for help on using the changeset viewer.