Changeset 3395356
- Timestamp:
- 11/13/2025 09:55:41 PM (4 months ago)
- Location:
- wecantrack
- Files:
-
- 30 added
- 4 edited
-
tags/4.0.2 (added)
-
tags/4.0.2/README.md (added)
-
tags/4.0.2/WecantrackAdmin.php (added)
-
tags/4.0.2/WecantrackApp.php (added)
-
tags/4.0.2/WecantrackHelper.php (added)
-
tags/4.0.2/css (added)
-
tags/4.0.2/css/admin.css (added)
-
tags/4.0.2/images (added)
-
tags/4.0.2/images/favicon.png (added)
-
tags/4.0.2/images/favicon2.png (added)
-
tags/4.0.2/images/wct-logo-normal.svg (added)
-
tags/4.0.2/includes (added)
-
tags/4.0.2/includes/WecantrackPermissions.php (added)
-
tags/4.0.2/index.php (added)
-
tags/4.0.2/js (added)
-
tags/4.0.2/js/admin.js (added)
-
tags/4.0.2/js/advanced_settings.js (added)
-
tags/4.0.2/js/redirect_page.js (added)
-
tags/4.0.2/languages (added)
-
tags/4.0.2/languages/wecantrack.pot (added)
-
tags/4.0.2/license.txt (added)
-
tags/4.0.2/locale (added)
-
tags/4.0.2/readme.txt (added)
-
tags/4.0.2/views (added)
-
tags/4.0.2/views/advanced_settings.php (added)
-
tags/4.0.2/views/redirect_page.php (added)
-
tags/4.0.2/views/settings.php (added)
-
tags/4.0.2/views/unauthorized.php (added)
-
tags/4.0.2/wecantrack.php (added)
-
tags/4.0.2/wecantrack.pot (added)
-
trunk/languages/wecantrack.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/views/advanced_settings.php (modified) (2 diffs)
-
trunk/wecantrack.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wecantrack/trunk/languages/wecantrack.pot
r3342962 r3395356 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WeCanTrack 4.0. 1\n"5 "Project-Id-Version: WeCanTrack 4.0.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wecantrack\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025- 08-11T14:54:49+00:00\n"12 "POT-Creation-Date: 2025-11-11T22:06:46+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.4.0\n" -
wecantrack/trunk/readme.txt
r3342962 r3395356 5 5 Tested up to: 6.7.1 6 6 Requires PHP: 7.4 7 Stable tag: 4.0. 17 Stable tag: 4.0.2 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 58 58 == Changelog == 59 59 60 = 4.0.2 - 11th November 2025 = 61 * Fix advanced form. The Include WCT Script shows false on null but should be true on null 62 60 63 = 4.0.1 - 11th August 2025 = 61 64 * Versioning fix -
wecantrack/trunk/views/advanced_settings.php
r3321766 r3395356 10 10 $wecantrack_can_redirect_through_parameter_status = false; 11 11 12 $wecantrack_include_script = ! empty($wecantrack_storage['include_script']);12 $wecantrack_include_script = !isset($wecantrack_storage['include_script']) || $wecantrack_storage['include_script'] == true; 13 13 ?> 14 14 … … 72 72 </fieldset> 73 73 74 <p class="description">We use the cookie `_wct_http_referrer_1` and `_wct_http_referrer_2` to increase the coverage for populating the Clickout URL. <b>Note: This cookie gets set on the server side, if you have caching in place that checks on cookie values please filter these cookies out or disable this setting. </b></p>74 <p class="description">We use the cookie `_wct_http_referrer_1` and `_wct_http_referrer_2` to increase the coverage for populating the Clickout URL. <b>Note: This cookie gets set on the server side, if you have caching in place that checks on cookie values please filter these cookies out or disable this setting. This setting is only useful for specific use cases. Please only use it if your Clickout URL coverage is low. When in doubt please reach out to our support.</b></p> 75 75 </td> 76 76 </tr> -
wecantrack/trunk/wecantrack.php
r3342962 r3395356 4 4 * Plugin URI: https://wecantrack.com/wordpress 5 5 * Description: Integrate all your affiliate sales into Google Analytics, Google Ads, Facebook, Data Studio, and more! 6 * Version: 4.0. 16 * Version: 4.0.2 7 7 * Author: WeCanTrack 8 8 * Author URI: https://wecantrack.com … … 18 18 if (!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } 19 19 20 define('WECANTRACK_VERSION', '4.0. 1');20 define('WECANTRACK_VERSION', '4.0.2'); 21 21 define('WECANTRACK_PLUGIN_NAME', 'wecantrack'); 22 22 define('WECANTRACK_PATH', plugin_dir_path(__FILE__)); … … 69 69 add_option('wecantrack_plugin_status', 0, null); 70 70 add_option('wecantrack_fetch_expiration', null, null); 71 add_option('wecantrack_snippet', null, null);71 add_option('wecantrack_snippet', 1, null); 72 72 add_option('wecantrack_session_enabler', null, null); 73 73 add_option('wecantrack_snippet_version', null, null);
Note: See TracChangeset
for help on using the changeset viewer.