Plugin Directory

Changeset 2946389


Ignore:
Timestamp:
08/02/2023 06:13:33 AM (3 years ago)
Author:
slimcd
Message:

added transcation id to post meta table

Location:
slimcd-payment-gateway
Files:
19 added
3 edited

Legend:

Unmodified
Added
Removed
  • slimcd-payment-gateway/trunk/README.txt

    r2704556 r2946389  
    33Tags: : ecommerce, e-commerce, commerce, woothemes, wordpress ecommerce, store, sales, sell, shop, shopping, cart, checkout
    44Requires at least: 4.9.0
    5 Tested up to: 5.9
    6 Stable tag: 1.0.2
     5Tested up to: 6.2
     6Stable tag: 1.0.3
    77Requires PHP: 7.0.0
    88License: GPLv2 or later
     
    9898= 1.0.2 =
    9999Added user choice to select status after payment.
     100
     101= 1.0.3 =
     102Added payment gateway (transaction) id to post meta table.
     103
  • slimcd-payment-gateway/trunk/includes/class-slimcd-payment-gateway.php

    r2605518 r2946389  
    22class slimcd_payment_gateway extends WC_Payment_Gateway
    33{
     4
     5    protected $instructions;
    46
    57    /**
     
    170172                }
    171173                $this->slimcd_update_order_status($_POST['order_id']);
     174                add_post_meta($_POST['order_id'], '_transaction_id', $_POST['gateid']);
    172175                echo "OK";
    173176            } else {
  • slimcd-payment-gateway/trunk/slimcd-payment-for-woocommerce.php

    r2601662 r2946389  
    55 * Plugin URI: https://slimcd.com/woocommerce/
    66 * Description: Slim CD’s gateway system was designed to allow merchants to take any kind of electronic payment with a single piece of software – quickly, easily, painlessly, from any PC.
    7  * Version: 1.0.2
     7 * Version: 1.0.3
    88 * Author: SlimCD
    99 * Author URI: https://slimcd.com/
Note: See TracChangeset for help on using the changeset viewer.