Changeset 1414374
- Timestamp:
- 05/11/2016 04:47:42 AM (10 years ago)
- Location:
- wpf-woocommerce/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
includes/class-wpf-woocommerce.php (modified) (1 diff)
-
wpf-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpf-woocommerce/trunk/README.txt
r1404169 r1414374 4 4 Donate link: https://wpfortify.com 5 5 Requires at least: 3.9 6 Tested up to: 4.5 7 Stable tag: 2.6. 56 Tested up to: 4.5.2 7 Stable tag: 2.6.6 8 8 License: GPLv2+ 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 2.6.6 = 82 * Fixed a PHP Error Notice for $user_id that could cause orders updates to fail for guest checkout after payment has been received. 83 81 84 = 2.6.5 = 82 85 * Changed the order description to use get_order_number() instead of the actual order ID -
wpf-woocommerce/trunk/includes/class-wpf-woocommerce.php
r1404169 r1414374 546 546 $order = new WC_Order( $response->metadata->order_id ); 547 547 548 if ( $response->metadata->user_id&& $response->card->customer ) {548 if ( isset( $response->metadata->user_id ) && $response->card->customer ) { 549 549 if ( $response->livemode ){ 550 550 add_user_meta( $response->metadata->user_id, '_wpf_woocommerce_customer_id_live', $response->card->customer, true ); -
wpf-woocommerce/trunk/wpf-woocommerce.php
r1404169 r1414374 4 4 Plugin URI: http://wordpress.org/plugins/wpf-woocommerce/ 5 5 Description: wpFortify provides a hosted SSL checkout page for Stripe payments. A free wpFortify account is required for this plugin to work. 6 Version: 2.6. 56 Version: 2.6.6 7 7 Author: wpFortify 8 8 Author URI: https://wpfortify.com … … 30 30 31 31 // Define 32 define( 'WPF_WC_GATEWAY_VERSION', '2.6. 5' );32 define( 'WPF_WC_GATEWAY_VERSION', '2.6.6' ); 33 33 define( 'WPF_WC_GATEWAY_TEMPLATE_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) . '/templates/' ); 34 34 define( 'WPF_WC_GATEWAY_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
Note: See TracChangeset
for help on using the changeset viewer.