Changeset 2452150
- Timestamp:
- 01/07/2021 08:18:54 PM (5 years ago)
- Location:
- order-postback-woo/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (3 diffs)
-
includes/class-order-postback-woo.php (modified) (1 diff)
-
order-postback-woo.php (modified) (2 diffs)
-
public/class-order-postback-woo-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
order-postback-woo/trunk/README.txt
r2442010 r2452150 5 5 Requires at least: 3.1 6 6 Tested up to: 5.6 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 Requires PHP: 5.6 or above 9 9 License: GPLv2 or later … … 35 35 Outbrain 36 36 Taboola 37 Anynetwork that supports image or server 2 server postback calls. 37 zapier webhooks 38 image url callback 39 Any affiliate network that supports image or server 2 server postback calls 38 40 39 41 … … 80 82 81 83 == Changelog == 84 = 1.0.4 = 85 fixed replacement variable offset issue if on version 1.0.3 86 82 87 = 1.0.3 = 83 88 added can fire when clickid is set for affiliate networks -
order-postback-woo/trunk/includes/class-order-postback-woo.php
r2442010 r2452150 71 71 $this->version = ORDER_POSTBACK_WOO_VERSION; 72 72 } else { 73 $this->version = '1.0. 3';73 $this->version = '1.0.4'; 74 74 } 75 75 $this->plugin_name = $this->order_postback_woo = 'order-postback-woo'; -
order-postback-woo/trunk/order-postback-woo.php
r2442010 r2452150 17 17 * Plugin URI: https://www.wpconcierges.com/plugins/order_postback_woo/ 18 18 * Description: This plugin sends your order information from your Woocomerce store as a key/value pair to any url of your choice, using either a POST or GET. This is useful if you would like to store your orders or process orders outside of your Woocommerce store. 19 * Version: 1.0. 319 * Version: 1.0.4 20 20 * Author: WpConcierges 21 21 * Author URI: https://www.wpconcierges.com/ … … 38 38 * Rename this for your plugin and update it as you release new versions. 39 39 */ 40 define( 'ORDER_POSTBACK_WOO_VERSION', '1.0. 3' );40 define( 'ORDER_POSTBACK_WOO_VERSION', '1.0.4' ); 41 41 42 42 /** -
order-postback-woo/trunk/public/class-order-postback-woo-public.php
r2442010 r2452150 239 239 $values['product_total']=$total_items; 240 240 $values['products']=$order_items; 241 $values = json_encode($values);241 242 242 243 243 return $values;
Note: See TracChangeset
for help on using the changeset viewer.