Plugin Directory

Changeset 2452150


Ignore:
Timestamp:
01/07/2021 08:18:54 PM (5 years ago)
Author:
wpconcierges
Message:

committing version 1.0.4

Location:
order-postback-woo/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • order-postback-woo/trunk/README.txt

    r2442010 r2452150  
    55Requires at least: 3.1
    66Tested up to: 5.6
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.4
    88Requires PHP: 5.6 or above
    99License: GPLv2 or later
     
    3535Outbrain
    3636Taboola
    37 Anynetwork that supports image or server 2 server postback calls.
     37zapier webhooks
     38image url callback
     39Any affiliate network that supports image or server 2 server postback calls
    3840
    3941
     
    8082
    8183== Changelog ==
     84= 1.0.4 =
     85fixed replacement variable offset issue if on version 1.0.3
     86
    8287= 1.0.3 =
    8388added can fire when clickid is set for affiliate networks
  • order-postback-woo/trunk/includes/class-order-postback-woo.php

    r2442010 r2452150  
    7171            $this->version = ORDER_POSTBACK_WOO_VERSION;
    7272        } else {
    73             $this->version = '1.0.3';
     73            $this->version = '1.0.4';
    7474        }
    7575        $this->plugin_name = $this->order_postback_woo = 'order-postback-woo';
  • order-postback-woo/trunk/order-postback-woo.php

    r2442010 r2452150  
    1717 * Plugin URI:        https://www.wpconcierges.com/plugins/order_postback_woo/
    1818 * 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.3
     19 * Version:           1.0.4
    2020 * Author:            WpConcierges
    2121 * Author URI:        https://www.wpconcierges.com/
     
    3838 * Rename this for your plugin and update it as you release new versions.
    3939 */
    40 define( 'ORDER_POSTBACK_WOO_VERSION', '1.0.3' );
     40define( 'ORDER_POSTBACK_WOO_VERSION', '1.0.4' );
    4141
    4242/**
  • order-postback-woo/trunk/public/class-order-postback-woo-public.php

    r2442010 r2452150  
    239239           $values['product_total']=$total_items;
    240240           $values['products']=$order_items;
    241        $values = json_encode($values);
     241     
    242242       
    243243      return $values;
Note: See TracChangeset for help on using the changeset viewer.