Plugin Directory

Changeset 1251781


Ignore:
Timestamp:
09/23/2015 06:08:34 AM (11 years ago)
Author:
segmentio
Message:

1.0.12

Location:
segmentio/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • segmentio/trunk/Readme.md

    r1067497 r1251781  
    77## Installation
    88
    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!
     9To 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!
    1010
    1111
     
    3131## Support
    3232
    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!
     33If 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!
    3434
    3535
  • segmentio/trunk/analytics-wordpress.php

    r1068025 r1251781  
    44Plugin URI: https://segment.io/plugins/wordpress
    55Description: The hassle-free way to integrate any analytics service into your WordPress site.
    6 Version: 1.0.11
     6Version: 1.0.12
    77License: GPLv2
    88Author: Segment.io
     
    182182     * Current plugin version.
    183183     */
    184     const VERSION = '1.0.8';
     184    const VERSION = '1.0.12';
    185185
    186186    /**
  • segmentio/trunk/integrations/ecommerce/woocommerce.php

    r980785 r1251781  
    112112        $cart_item = $items[ $key ];
    113113
     114        if ( ! is_object( $cart_item ) ) {
     115            return;
     116        }
     117
    114118        Segment_Cookie::set_cookie( 'added_to_cart', json_encode(
    115119                array(
     
    194198        $items     = WC()->cart->get_cart();
    195199        $cart_item = $items[ $key ];
     200
     201        if ( ! is_object( $cart_item ) ) {
     202            return;
     203        }
    196204
    197205        Segment_Cookie::set_cookie( 'removed_from_cart', json_encode(
  • segmentio/trunk/readme.txt

    r1068025 r1251781  
    44Requires at least: 3.6
    55Tested up to: 4.0
    6 Stable tag: 1.0.11
     6Stable tag: 1.0.12
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.