Plugin Directory

Changeset 2654287


Ignore:
Timestamp:
01/07/2022 04:59:22 PM (4 years ago)
Author:
wecantrack
Message:

release 1.3.0

Location:
wecantrack
Files:
27 added
3 edited

Legend:

Unmodified
Added
Removed
  • wecantrack/trunk/readme.txt

    r2622887 r2654287  
    55Tested up to: 5.8
    66Requires PHP: 5.6.20
    7 Stable tag: 1.2.12
     7Stable tag: 1.3.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    6060
    6161== Changelog ==
     62
     63= 1.3.0 - 20th December 2021 =
     64 * Do not enqueue WCT JS Script in Thrive Architect
    6265
    6366= 1.2.12 - 27th October 2021 =
  • wecantrack/trunk/wecantrack.php

    r2622887 r2654287  
    77Plugin URI: https://wecantrack.com/wordpress
    88Description: Integrate all you affiliate sales in Google Analytics, Google Ads, Facebook, Data Studio and more!
    9 Version: 1.2.12
     9Version: 1.3.0
    1010Author: wecantrack.com
    1111Author URI: https://wecantrack.com
     
    1717if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); }
    1818
    19 define('WECANTRACK_VERSION', '1.2.12');
     19define('WECANTRACK_VERSION', '1.3.0');
    2020define('WECANTRACK_PLUGIN_NAME', 'wecantrack');
    2121define('WECANTRACK_PATH', WP_PLUGIN_DIR.'/'.WECANTRACK_PLUGIN_NAME);
     
    3030    new WecantrackAdmin();
    3131} else if (filter_input(INPUT_SERVER, 'REQUEST_URI') !== '/wp-login.php') {
    32     require_once(WECANTRACK_PATH . '/WecantrackApp.php');
    33     require_once(WECANTRACK_PATH . '/WecantrackAppRedirectPage.php');
    34     new WecantrackApp();
     32    // Do not enqueue our JS scripts in Thrive Architect's iframe.
     33    if (!(defined( 'TVE_PLUGIN_FILE' ) && strpos(filter_input(INPUT_SERVER, 'REQUEST_URI'), 'tve=true&tcbf=') !== false)) {
     34        require_once(WECANTRACK_PATH . '/WecantrackApp.php');
     35        require_once(WECANTRACK_PATH . '/WecantrackAppRedirectPage.php');
     36        new WecantrackApp();
     37    }
    3538}
    3639
  • wecantrack/trunk/wecantrack.pot

    r2622887 r2654287  
    1 # Copyright (C) 2021 wecantrack.com
     1# Copyright (C) 2022 wecantrack.com
    22# This file is distributed under the same license as the WeCanTrack plugin.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WeCanTrack 1.2.12\n"
     5"Project-Id-Version: WeCanTrack 1.3.0\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: 2021-10-26T21:35:34+00:00\n"
     12"POT-Creation-Date: 2022-01-05T15:23:52+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
Note: See TracChangeset for help on using the changeset viewer.