Plugin Directory

Changeset 2135472


Ignore:
Timestamp:
08/07/2019 09:23:45 AM (7 years ago)
Author:
BenDlz
Message:

v0.2

  • Add custom domain capacity
  • Add pixel path customization
Location:
at-internet/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • at-internet/trunk/atinternet-smarttag.php

    r1976706 r2135472  
    22/*
    33 * Plugin Name: AT Internet SmartTag
    4  * Version: 0.1.5
     4 * Version: 0.2
    55 * Plugin URI: http://www.atinternet.com/
    66 * Description: AT Internet official extension, allowing website tracking.
     
    88 * Author URI: http://www.atinternet.com/
    99 * Requires at least: 4.0
    10  * Tested up to: 4.9.8
     10 * Tested up to: 5.2.2
    1111 *
    1212 * Text Domain: atinternet-smarttag
  • at-internet/trunk/includes/class-atinternet-smarttag-settings.php

    r1864266 r2135472  
    161161                    'label'         => __( 'Collect domain', 'at-internet' ),
    162162                    'description'   => __( '', 'at-internet' ),
    163                     'type'          => 'select',
    164                     'options'       => array( 'xiti.com' => 'xiti.com', 'ati-host.net' => 'ati-host.net' ),
    165                     'default'       => 'xiti'
    166                 )/* Hide eCommerce measurement, for the moment...
     163                    'type'          => 'text',
     164                    'default'       => 'xiti.com',
     165                    'placeholder'   => __( 'xiti.com', 'at-internet' )
     166        ),
     167        array(
     168                    'id'            => 'pixel',
     169                    'label'         => __( 'Pixel path', 'at-internet' ),
     170                    'description'   => __( 'Collection pixel path', 'at-internet' ),
     171                    'type'          => 'text',
     172                    'default'       => 'hit.xiti',
     173                    'placeholder'   => __( 'hit.xiti', 'at-internet' )
     174        )
     175        /* Hide eCommerce measurement, for the moment...
    167176                ,
    168177                array(
  • at-internet/trunk/includes/lib/class-atinternet-smarttag-tracking.php

    r1864266 r2135472  
    9696            'logSSL' => $this->prefix . 'logssl',
    9797            'site' => $this->prefix . 'sitenumber',
    98             'secure' => $this->prefix . 'secure'
     98      'secure' => $this->prefix . 'secure',
     99      'pixelPath' => $this->prefix . 'pixel'
    99100        );
    100101        foreach( $ati_config as $config => $name ) {
  • at-internet/trunk/readme.txt

    r1976706 r2135472  
    11=== AT Internet SmartTag ===
    22Contributors: BenDlz
    3 Tags: AT Internet, Analytics, Tracking, Woocommerce
     3Tags: AT Internet, Analytics, Tracking
    44Requires at least: 4.0
    5 Tested up to: 4.9.8
     5Tested up to: 5.2.2
    66Stable tag: trunk
    77License: GPLv2 or later
     
    3131
    3232== Changelog ==
     33
     34= 0.2 =
     35* 2019-08-07
     36* Add custom domain capacity
     37* Add pixel path customization
    3338
    3439= 0.1.5 =
Note: See TracChangeset for help on using the changeset viewer.