Changeset 2527106
- Timestamp:
- 05/06/2021 07:34:35 AM (5 years ago)
- Location:
- bux-woocommerce/trunk
- Files:
-
- 2 edited
-
bux-plugin.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bux-woocommerce/trunk/bux-plugin.php
r2526845 r2527106 4 4 * Plugin URI: https://bux.ph/static/bux-plugin-wp.zip 5 5 * Description: Bux plugin for Woocommerce, you need to have Woocommerce installed 6 * Version: 1.1. 36 * Version: 1.1.4 7 7 * Author: UBX Philippines 8 8 * Author URI: https://bux.ph … … 103 103 } 104 104 105 if($order_status == "wc-cancelled" && $pre_order_status != " wc-cancelled"){105 if($order_status == "wc-cancelled" && $pre_order_status != "cancelled"){ 106 106 #only restore stock if not yet cancelled 107 107 restore_order_stock($order); 108 108 $order->update_status( $order_status, __( 'Payment Expired/Cancelled', 'bux-gateway' ) ); 109 }else if($order_status == "wc-processing" && $pre_order_status != " wc-processing"){109 }else if($order_status == "wc-processing" && $pre_order_status != "processing"){ 110 110 $order->update_status( $order_status, __( 'Payment Successful', 'bux-gateway' ) ); 111 111 }else{ -
bux-woocommerce/trunk/readme.txt
r2526845 r2527106 10 10 Requires PHP: 5.2.4 11 11 Stable tag: 1.1.2 12 Version: 1.1. 312 Version: 1.1.4 13 13 Donate link: https://bux.ph/ 14 14 … … 68 68 * Restock on expired notification from bux 69 69 70 = 1.1.4 = 71 * Restock double posting handling 72 70 73 == Upgrade Notice == 71 74 … … 94 97 * Restock on expired notification from bux 95 98 99 = 1.1.4 = 100 * Restock double posting handling 101 96 102 == Screenshots == 97 103
Note: See TracChangeset
for help on using the changeset viewer.