Changeset 2379385
- Timestamp:
- 09/11/2020 10:54:22 AM (5 years ago)
- Location:
- platformly-for-woocommerce/trunk
- Files:
-
- 3 edited
-
includes/class-platformly-woocommerce-rest-api.php (modified) (5 diffs)
-
platformly-for-woocommerce.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
platformly-for-woocommerce/trunk/includes/class-platformly-woocommerce-rest-api.php
r2336028 r2379385 39 39 'methods' => 'GET', 40 40 'callback' => array($this, 'order_count'), 41 'permission_callback' => '__return_true' 41 42 )); 42 43 } … … 45 46 'methods' => 'GET', 46 47 'callback' => array($this, 'orders'), 48 'permission_callback' => '__return_true' 47 49 )); 48 50 } … … 50 52 register_rest_route(static::$namespace, '/abandoned_carts', array( 51 53 'methods' => 'GET', 52 'callback' => array($this, 'get_abandoned_carts') 54 'callback' => array($this, 'get_abandoned_carts'), 55 'permission_callback' => '__return_true' 53 56 )); 54 57 } … … 57 60 'methods' => 'GET', 58 61 'callback' => array($this, 'customers'), 62 'permission_callback' => '__return_true' 59 63 )); 60 64 } … … 63 67 'methods' => 'GET', 64 68 'callback' => array($this, 'completed_sync'), 69 'permission_callback' => '__return_true' 65 70 )); 66 71 } -
platformly-for-woocommerce/trunk/platformly-for-woocommerce.php
r2336507 r2379385 4 4 * Plugin Name: Platform.ly for WooCommerce 5 5 * Description: Easily connect WooCommerce to your Platformly CRM, set up abandoned cart campaigns and access detailed customer reporting: lifetime value and more... 6 * Version: 1.1. 16 * Version: 1.1.2 7 7 * Author: Platform.ly 8 8 * Author URI: https://www.platform.ly/ 9 9 * 10 10 * WC requires at least: 3.5.0 11 * WC tested up to: 4. 2.211 * WC tested up to: 4.5.1 12 12 * 13 13 * License: GPL-2.0+ … … 25 25 * @var string 26 26 */ 27 public $version = '1.1. 1';27 public $version = '1.1.2'; 28 28 29 29 /** -
platformly-for-woocommerce/trunk/readme.txt
r2336507 r2379385 4 4 Tags: CRM, ecommerce, event tracking, abandoned cart, cart abandonment, sales reporting, platform.ly, platformly 5 5 Requires at least: 4.9.13 6 Tested up to: 5. 3.26 Tested up to: 5.5.1 7 7 Stable tag: trunk 8 8 Requires PHP: 5.6 … … 126 126 * Minor fix 127 127 128 = 1.1.2 = 129 * Minor fix 130 128 131 == Upgrade Notice == 129 132 … … 136 139 = 1.1.1 = 137 140 * Minor fix 141 142 = 1.1.2 = 143 * Minor fix
Note: See TracChangeset
for help on using the changeset viewer.