Changeset 3297942
- Timestamp:
- 05/21/2025 09:58:48 AM (9 months ago)
- Location:
- tracemyip-visitor-analytics-ip-tracking-control/trunk
- Files:
-
- 2 edited
-
TraceMyIP-Wordpress-Plugin.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tracemyip-visitor-analytics-ip-tracking-control/trunk/TraceMyIP-Wordpress-Plugin.php
r3297913 r3297942 5 5 Plugin URI: https://www.tracemyip.org 6 6 Description: Website visitor IP address activity tracking, IP analytics, visitor email alerts, IP changes tracker and visitor IP address blocking. Tag visitors IPs, track, create email alerts, control and manage pages, links and protect contact forms. GDPR compliant. For visitor tracker setup instructions, see <a href="admin.php?page=tmip_lnk_wp_settings"><b>plugin settings</b></a>. 7 Version: 2.6 67 Version: 2.67 8 8 Author: TraceMyIP.org 9 9 Author URI: https://www.TraceMyIP.org … … 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html 13 13 */ 14 if (!defined('TMIP_VERSION') ) define('TMIP_VERSION', '2.6 6');14 if (!defined('TMIP_VERSION') ) define('TMIP_VERSION', '2.67'); 15 15 16 16 ### SET CONSTANTS ############################################ … … 21 21 22 22 define("tmip_plugin_dir_name", 'tracemyip-visitor-analytics-ip-tracking-control', false); 23 define("tmip_enable_user_notices", 0); // User notices on WP Dashboard: 1-enable23 define("tmip_enable_user_notices", 1); // User notices on WP Dashboard: 1-enable 24 24 define("tmip_enable_meta_rating", 2); // Show rate section. 1-post selected rating, 2-show transitional screen 25 25 define("tmip_enable_meta_rating_menu", 1); // Show rate section menu link … … 79 79 # 052125092856 80 80 // Initialize user notices: Reset by $tmip_notices_debug 81 if (tmip_enable_user_notices==1) { 82 require_once(tmip_plugin_path . 'includes/classes/class-tmip-system-notices.php'); 83 new TMIPSystemNotices(); 84 // Reset notification statuses 85 if (tmip_user_executed) { 86 if (!get_option(tmip_user_notice_install_date)) update_option(tmip_user_notice_install_date, time()); 87 if (!empty($tmip_notices_debug) and $tmip_notices_debug===99) { // Reset notices state 88 delete_option(tmip_user_notice_install_date); 89 delete_option(tmip_user_notice_views); 90 delete_option(tmip_user_notice_dismissed); 91 delete_transient(tmip_user_notice_snoozed); 92 } 93 } 81 $tmipSysNTF=tmip_plugin_path . 'includes/classes/class-tmip-system-notices.php'; 82 if (tmip_enable_user_notices==1 and file_exists($tmipSysNTF)) { 83 include_once($tmipSysNTF); 84 new TMIPSystemNotices(); 85 // Reset notification statuses 86 if (tmip_user_executed) { 87 if (!get_option(tmip_user_notice_install_date)) update_option(tmip_user_notice_install_date, time()); 88 if (!empty($tmip_notices_debug) and $tmip_notices_debug===99) { // Reset notices state 89 delete_option(tmip_user_notice_install_date); 90 delete_option(tmip_user_notice_views); 91 delete_option(tmip_user_notice_dismissed); 92 delete_transient(tmip_user_notice_snoozed); 93 } 94 } 94 95 } 95 96 -
tracemyip-visitor-analytics-ip-tracking-control/trunk/readme.txt
r3297913 r3297942 6 6 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 2.6 68 Stable tag: 2.67 9 9 License: GPLv2 (or later) 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 174 174 == Changelog == 175 175 176 = Version 2.67 = 177 - Incremental push update rev for v2.65 178 176 179 = Version 2.66 = 177 - Provisional updates for WordPress v6.8180 - Provisional updates for 2.65 on WordPress v6.8 178 181 179 182 = Version 2.65 =
Note: See TracChangeset
for help on using the changeset viewer.