Changeset 1251781
- Timestamp:
- 09/23/2015 06:08:34 AM (11 years ago)
- Location:
- segmentio/trunk
- Files:
-
- 4 edited
-
Readme.md (modified) (2 diffs)
-
analytics-wordpress.php (modified) (2 diffs)
-
integrations/ecommerce/woocommerce.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
segmentio/trunk/Readme.md
r1067497 r1251781 7 7 ## Installation 8 8 9 To get up and running, checkout our documentation at [segment.com/ plugins/wordpress](https://segment.com/plugins/wordpress)—installation takes less than five minutes!9 To get up and running, checkout our documentation at [segment.com/docs/platforms/wordpress](https://segment.com/docs/platforms/wordpress/)—installation takes less than five minutes! 10 10 11 11 … … 31 31 ## Support 32 32 33 If you run into issues, be sure to check out the [documentation](https://segment.com/ plugins/wordpress), and you can always reach out to our [support team](https://segment.com/support) for help!33 If you run into issues, be sure to check out the [documentation](https://segment.com/docs/platforms/wordpress/), and you can always reach out to our [support team](https://segment.com/support) for help! 34 34 35 35 -
segmentio/trunk/analytics-wordpress.php
r1068025 r1251781 4 4 Plugin URI: https://segment.io/plugins/wordpress 5 5 Description: The hassle-free way to integrate any analytics service into your WordPress site. 6 Version: 1.0.1 16 Version: 1.0.12 7 7 License: GPLv2 8 8 Author: Segment.io … … 182 182 * Current plugin version. 183 183 */ 184 const VERSION = '1.0. 8';184 const VERSION = '1.0.12'; 185 185 186 186 /** -
segmentio/trunk/integrations/ecommerce/woocommerce.php
r980785 r1251781 112 112 $cart_item = $items[ $key ]; 113 113 114 if ( ! is_object( $cart_item ) ) { 115 return; 116 } 117 114 118 Segment_Cookie::set_cookie( 'added_to_cart', json_encode( 115 119 array( … … 194 198 $items = WC()->cart->get_cart(); 195 199 $cart_item = $items[ $key ]; 200 201 if ( ! is_object( $cart_item ) ) { 202 return; 203 } 196 204 197 205 Segment_Cookie::set_cookie( 'removed_from_cart', json_encode( -
segmentio/trunk/readme.txt
r1068025 r1251781 4 4 Requires at least: 3.6 5 5 Tested up to: 4.0 6 Stable tag: 1.0.1 16 Stable tag: 1.0.12 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.