Changeset 3081352
- Timestamp:
- 05/04/2024 09:29:48 PM (2 years ago)
- Location:
- credo-payment-forms
- Files:
-
- 4 edited
-
assets/banner-772x250.png (modified) (previous)
-
trunk/includes/class-wc-gateway-credo.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/woo-credo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
credo-payment-forms/trunk/includes/class-wc-gateway-credo.php
r3027671 r3081352 225 225 $this->public_key = $this->testmode ? $this->test_public_key : $this->live_public_key; 226 226 $this->secret_key = $this->testmode ? $this->test_secret_key : $this->live_secret_key; 227 $this->base_url = $this->testmode ? 'https://api. public.credodemo.com' : 'https://api.credocentral.com';227 $this->base_url = $this->testmode ? 'https://api.credodemo.com' : 'https://api.credocentral.com'; 228 228 229 229 … … 864 864 wc_add_notice( __( 'Unable to process payment try again', 'woo-credo' ), 'error' ); 865 865 866 $credo_response = wp_remote_retrieve_body( $request );867 868 869 866 return; 870 867 } -
credo-payment-forms/trunk/readme.txt
r3027671 r3081352 87 87 88 88 89 = 2.0.1 - April 5, 2024 = 90 * Update: Removed "public" from api base url 91 92 = 2.0.0 - January 27, 2024 = 93 * New: Add support for WooCommerce checkout block 94 * Tweak: WooCommerce 8.0 compatibility 95 * Improve: Ensure order amount is in integer when initializing payment on Credo 96 97 = 1.0.7 - October 8, 2023 = 98 * Added Pop up payment option 99 100 = 1.0.6 - September 21, 2023 = 101 * Update: Updated banners and icons 102 * Update: Updated Dynamic Settlement Settings 103 104 = 1.0.1 - August 22, 2023 = 105 * Update: Added Assets 106 89 107 = 1.0.0 - July 24, 2023 = 90 108 * First release 91 109 92 = 1.0.1 - August 22, 2023 =93 * Added Assets94 110 95 = 1.0.6 - September 21, 2023 =96 * Updated banners and icons97 * Updated Dynamic Settlement Settings98 111 99 = 1.0.7 - October 8, 2023 =100 * Added Pop up payment option101 112 102 113 -
credo-payment-forms/trunk/woo-credo.php
r3027671 r3081352 5 5 * Plugin URI: https://credocentral.com 6 6 * Description: WooCommerce payment gateway for Credo 7 * Version: 2.0. 07 * Version: 2.0.1 8 8 * Author: Lanre Yusuf 9 9 * Author URI: https://linkedin.com/in/lanre-yusuf-a55b3a80 … … 11 11 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt 12 12 * WC requires at least: 7.0 13 * WC tested up to: 8. 313 * WC tested up to: 8.8.3 14 14 * Text Domain: woo-credo 15 15 * Domain Path: /languages
Note: See TracChangeset
for help on using the changeset viewer.