Changeset 2642232
- Timestamp:
- 12/10/2021 07:18:30 AM (4 years ago)
- Location:
- customerlabs-actionrecorder
- Files:
-
- 3 edited
- 10 copied
-
tags/1.3.1 (copied) (copied from customerlabs-actionrecorder/trunk)
-
tags/1.3.1/ActionRecorder.php (copied) (copied from customerlabs-actionrecorder/trunk/ActionRecorder.php) (4 diffs)
-
tags/1.3.1/Readme.md (copied) (copied from customerlabs-actionrecorder/trunk/Readme.md) (3 diffs)
-
tags/1.3.1/Readme.txt (copied) (copied from customerlabs-actionrecorder/trunk/Readme.txt) (3 diffs)
-
tags/1.3.1/class.cltracker-cookie.php (copied) (copied from customerlabs-actionrecorder/trunk/class.cltracker-cookie.php)
-
tags/1.3.1/class.cltracker-settings.php (copied) (copied from customerlabs-actionrecorder/trunk/class.cltracker-settings.php)
-
tags/1.3.1/integrations/ecommerce.php (copied) (copied from customerlabs-actionrecorder/trunk/integrations/ecommerce.php)
-
tags/1.3.1/integrations/ecommerce/woocommerce.php (copied) (copied from customerlabs-actionrecorder/trunk/integrations/ecommerce/woocommerce.php)
-
tags/1.3.1/templates/identify.php (copied) (copied from customerlabs-actionrecorder/trunk/templates/identify.php)
-
tags/1.3.1/templates/track.php (copied) (copied from customerlabs-actionrecorder/trunk/templates/track.php)
-
trunk/ActionRecorder.php (modified) (4 diffs)
-
trunk/Readme.md (modified) (3 diffs)
-
trunk/Readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
customerlabs-actionrecorder/tags/1.3.1/ActionRecorder.php
r2623775 r2642232 3 3 Plugin Name: Customerlabs ActionRecorder 4 4 Description: A simple implementation of e-commerce events tracking for ActionRecorder 5 Version: 1.3. 05 Version: 1.3.1 6 6 License: GPLv2 7 7 Author: CustomerLabs Digital Solutions Pvt. Ltd. … … 567 567 $track = array( 568 568 'event' => __( 'User Logged In', 'cltracker' ), 569 'attributes' => array( 570 "customProperties" => array( 571 'username' => $user->user_login, 572 'email' => $user->user_email, 573 'name' => $user->display_name, 574 'firstName' => $user->user_firstname, 575 'lastName' => $user->user_lastname, 576 'url' => $user->user_url 577 ) 578 ), 569 'attributes' => array(), 579 570 'cached_event' => 'logged_in' 580 571 ); … … 593 584 $track = array( 594 585 'event' => __( 'User Signed Up', 'cltracker' ), 595 'attributes' => array( 596 "customProperties" => array( 597 'username' => $user->user_login, 598 'email' => $user->user_email, 599 'name' => $user->display_name, 600 'firstName' => $user->user_firstname, 601 'lastName' => $user->user_lastname, 602 'url' => $user->user_url 603 ) 604 ), 586 'attributes' => array(), 605 587 'cached_event' => 'signed_up' 606 588 ); … … 632 614 // All of these are checking for pages, and we don't want that to throw 633 615 // off Google Analytics's bounce rate, so mark them `noninteraction`. 634 $track['attributes']['noninteraction'] = true;616 // $track['attributes']['noninteraction'] = true; 635 617 636 618 // Clean out empty attributes before sending it back. -
customerlabs-actionrecorder/tags/1.3.1/Readme.md
r2623781 r2642232 4 4 Requires at least: 3.6 5 5 Tested up to: 5.8 6 Stable tag: 1.3. 06 Stable tag: 1.3.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 … … 54 54 ## Changelog 55 55 56 = 1.3.1 = 57 * Removed user traits from "User Signed Up" and "User Logged In" events 58 56 59 = 1.3.0 = 57 60 * Fixed multiple ajax events … … 72 75 ## Upgrade Notice 73 76 77 = 1.3.1 = 78 Removed user traits from "User Signed Up" and "User Logged In" events 79 74 80 = 1.3.0 = 75 81 Fixed multiple ajax events -
customerlabs-actionrecorder/tags/1.3.1/Readme.txt
r2623781 r2642232 4 4 Requires at least: 3.6 5 5 Tested up to: 5.8 6 Stable tag: 1.3. 06 Stable tag: 1.3.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 … … 54 54 == Changelog == 55 55 56 = 1.3.1 = 57 * Removed user traits from "User Signed Up" and "User Logged In" events 58 56 59 = 1.3.0 = 57 60 * Fixed multiple ajax events … … 72 75 == Upgrade Notice == 73 76 77 = 1.3.1 = 78 Removed user traits from "User Signed Up" and "User Logged In" events 79 74 80 = 1.3.0 = 75 81 Fixed multiple ajax events -
customerlabs-actionrecorder/trunk/ActionRecorder.php
r2623775 r2642232 3 3 Plugin Name: Customerlabs ActionRecorder 4 4 Description: A simple implementation of e-commerce events tracking for ActionRecorder 5 Version: 1.3. 05 Version: 1.3.1 6 6 License: GPLv2 7 7 Author: CustomerLabs Digital Solutions Pvt. Ltd. … … 567 567 $track = array( 568 568 'event' => __( 'User Logged In', 'cltracker' ), 569 'attributes' => array( 570 "customProperties" => array( 571 'username' => $user->user_login, 572 'email' => $user->user_email, 573 'name' => $user->display_name, 574 'firstName' => $user->user_firstname, 575 'lastName' => $user->user_lastname, 576 'url' => $user->user_url 577 ) 578 ), 569 'attributes' => array(), 579 570 'cached_event' => 'logged_in' 580 571 ); … … 593 584 $track = array( 594 585 'event' => __( 'User Signed Up', 'cltracker' ), 595 'attributes' => array( 596 "customProperties" => array( 597 'username' => $user->user_login, 598 'email' => $user->user_email, 599 'name' => $user->display_name, 600 'firstName' => $user->user_firstname, 601 'lastName' => $user->user_lastname, 602 'url' => $user->user_url 603 ) 604 ), 586 'attributes' => array(), 605 587 'cached_event' => 'signed_up' 606 588 ); … … 632 614 // All of these are checking for pages, and we don't want that to throw 633 615 // off Google Analytics's bounce rate, so mark them `noninteraction`. 634 $track['attributes']['noninteraction'] = true;616 // $track['attributes']['noninteraction'] = true; 635 617 636 618 // Clean out empty attributes before sending it back. -
customerlabs-actionrecorder/trunk/Readme.md
r2623781 r2642232 4 4 Requires at least: 3.6 5 5 Tested up to: 5.8 6 Stable tag: 1.3. 06 Stable tag: 1.3.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 … … 54 54 ## Changelog 55 55 56 = 1.3.1 = 57 * Removed user traits from "User Signed Up" and "User Logged In" events 58 56 59 = 1.3.0 = 57 60 * Fixed multiple ajax events … … 72 75 ## Upgrade Notice 73 76 77 = 1.3.1 = 78 Removed user traits from "User Signed Up" and "User Logged In" events 79 74 80 = 1.3.0 = 75 81 Fixed multiple ajax events -
customerlabs-actionrecorder/trunk/Readme.txt
r2623781 r2642232 4 4 Requires at least: 3.6 5 5 Tested up to: 5.8 6 Stable tag: 1.3. 06 Stable tag: 1.3.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 … … 54 54 == Changelog == 55 55 56 = 1.3.1 = 57 * Removed user traits from "User Signed Up" and "User Logged In" events 58 56 59 = 1.3.0 = 57 60 * Fixed multiple ajax events … … 72 75 == Upgrade Notice == 73 76 77 = 1.3.1 = 78 Removed user traits from "User Signed Up" and "User Logged In" events 79 74 80 = 1.3.0 = 75 81 Fixed multiple ajax events
Note: See TracChangeset
for help on using the changeset viewer.