Changeset 2135472
- Timestamp:
- 08/07/2019 09:23:45 AM (7 years ago)
- Location:
- at-internet/trunk
- Files:
-
- 4 edited
-
atinternet-smarttag.php (modified) (2 diffs)
-
includes/class-atinternet-smarttag-settings.php (modified) (1 diff)
-
includes/lib/class-atinternet-smarttag-tracking.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
at-internet/trunk/atinternet-smarttag.php
r1976706 r2135472 2 2 /* 3 3 * Plugin Name: AT Internet SmartTag 4 * Version: 0. 1.54 * Version: 0.2 5 5 * Plugin URI: http://www.atinternet.com/ 6 6 * Description: AT Internet official extension, allowing website tracking. … … 8 8 * Author URI: http://www.atinternet.com/ 9 9 * Requires at least: 4.0 10 * Tested up to: 4.9.810 * Tested up to: 5.2.2 11 11 * 12 12 * Text Domain: atinternet-smarttag -
at-internet/trunk/includes/class-atinternet-smarttag-settings.php
r1864266 r2135472 161 161 'label' => __( 'Collect domain', 'at-internet' ), 162 162 '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... 167 176 , 168 177 array( -
at-internet/trunk/includes/lib/class-atinternet-smarttag-tracking.php
r1864266 r2135472 96 96 'logSSL' => $this->prefix . 'logssl', 97 97 'site' => $this->prefix . 'sitenumber', 98 'secure' => $this->prefix . 'secure' 98 'secure' => $this->prefix . 'secure', 99 'pixelPath' => $this->prefix . 'pixel' 99 100 ); 100 101 foreach( $ati_config as $config => $name ) { -
at-internet/trunk/readme.txt
r1976706 r2135472 1 1 === AT Internet SmartTag === 2 2 Contributors: BenDlz 3 Tags: AT Internet, Analytics, Tracking , Woocommerce3 Tags: AT Internet, Analytics, Tracking 4 4 Requires at least: 4.0 5 Tested up to: 4.9.85 Tested up to: 5.2.2 6 6 Stable tag: trunk 7 7 License: GPLv2 or later … … 31 31 32 32 == Changelog == 33 34 = 0.2 = 35 * 2019-08-07 36 * Add custom domain capacity 37 * Add pixel path customization 33 38 34 39 = 0.1.5 =
Note: See TracChangeset
for help on using the changeset viewer.