Plugin Directory

Changeset 3395356


Ignore:
Timestamp:
11/13/2025 09:55:41 PM (4 months ago)
Author:
wecantrack
Message:

Release 4.0.2

Location:
wecantrack
Files:
30 added
4 edited

Legend:

Unmodified
Added
Removed
  • wecantrack/trunk/languages/wecantrack.pot

    r3342962 r3395356  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WeCanTrack 4.0.1\n"
     5"Project-Id-Version: WeCanTrack 4.0.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wecantrack\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"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"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
  • wecantrack/trunk/readme.txt

    r3342962 r3395356  
    55Tested up to: 6.7.1
    66Requires PHP: 7.4
    7 Stable tag: 4.0.1
     7Stable tag: 4.0.2
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    5858== Changelog ==
    5959
     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
    6063= 4.0.1 - 11th August 2025 =
    6164 * Versioning fix
  • wecantrack/trunk/views/advanced_settings.php

    r3321766 r3395356  
    1010$wecantrack_can_redirect_through_parameter_status = false;
    1111
    12 $wecantrack_include_script = !empty($wecantrack_storage['include_script']);
     12$wecantrack_include_script = !isset($wecantrack_storage['include_script']) || $wecantrack_storage['include_script'] == true;
    1313?>
    1414
     
    7272                        </fieldset>
    7373
    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>
    7575                    </td>
    7676                </tr>
  • wecantrack/trunk/wecantrack.php

    r3342962 r3395356  
    44 * Plugin URI:        https://wecantrack.com/wordpress
    55 * Description:       Integrate all your affiliate sales into Google Analytics, Google Ads, Facebook, Data Studio, and more!
    6  * Version:           4.0.1
     6 * Version:           4.0.2
    77 * Author:            WeCanTrack
    88 * Author URI:        https://wecantrack.com
     
    1818if (!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); }
    1919
    20 define('WECANTRACK_VERSION', '4.0.1');
     20define('WECANTRACK_VERSION', '4.0.2');
    2121define('WECANTRACK_PLUGIN_NAME', 'wecantrack');
    2222define('WECANTRACK_PATH', plugin_dir_path(__FILE__));
     
    6969        add_option('wecantrack_plugin_status', 0, null);
    7070        add_option('wecantrack_fetch_expiration', null, null);
    71         add_option('wecantrack_snippet', null, null);
     71        add_option('wecantrack_snippet', 1, null);
    7272        add_option('wecantrack_session_enabler', null, null);
    7373        add_option('wecantrack_snippet_version', null, null);
Note: See TracChangeset for help on using the changeset viewer.