Changeset 2745605
- Timestamp:
- 06/21/2022 03:47:34 AM (4 years ago)
- Location:
- pay-advantage/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
includes/class-payadvantage-activator.php (modified) (1 diff)
-
payadvantage.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pay-advantage/trunk/README.txt
r2721279 r2745605 3 3 Tags: credit cards, payment gateway, online payments, e-commerce 4 4 Requires at least: 5.2 5 Tested up to: 5.9.35 Tested up to: 6.0.0 6 6 Stable tag: 3.2.0 7 7 Requires PHP: 7.0 … … 42 42 43 43 == Changelog == 44 45 = 3.2.1 = 46 * Increased supported Wordpress version to 6.0.0 47 * Increased supported WooCommerce version to 6.5.1 44 48 45 49 = 3.2.0 = -
pay-advantage/trunk/includes/class-payadvantage-activator.php
r2708855 r2745605 13 13 add_option( 'pay_advantage_access_token', '' ); 14 14 add_option( 'pay_advantage_access_token_expiry', '' ); 15 add_option( 'pay_advantage_require_mobile', PAYADV_OPTIONS_REQUIRE_MOBILE);16 add_option( 'pay_advantage_require_address', PAYADV_OPTIONS_REQUIRE_ADDRESS);17 add_option( 'pay_advantage_require_country', PAYADV_OPTIONS_REQUIRE_COUNTRY);18 add_option( 'pay_advantage_show_bpay', PAYADV_OPTIONS_SHOW_BPAY);19 add_option( 'pay_advantage_show_credit_card', PAYADV_OPTIONS_SHOW_CREDIT_CARD);20 add_option( 'pay_advantage_credit_card_description', PAYADV_OPTIONS_CREDIT_CARD_DESCRIPTION);15 add_option( 'pay_advantage_require_mobile', 1 ); 16 add_option( 'pay_advantage_require_address', 0 ); 17 add_option( 'pay_advantage_require_country', 0 ); 18 add_option( 'pay_advantage_show_bpay', 1 ); 19 add_option( 'pay_advantage_show_credit_card', 1 ); 20 add_option( 'pay_advantage_credit_card_description', 'Pay Advantage' ); 21 21 add_option( 'pay_advantage_error_logging', '' ); 22 add_option( 'pay_advantage_show_widget_to_users_not_logged_in', PAYADV_OPTIONS_SHOW_WIDGET_TO_USERS_NOT_LOGGED_IN);22 add_option( 'pay_advantage_show_widget_to_users_not_logged_in', 0 ); 23 23 add_option( 'pay_advantage_wc_oncharge_credit_card_fees', '1' ); 24 24 add_option( 'pay_advantage_wc_paid_status', 'processing' ); 25 25 add_option( 'pay_advantage_wc_cancel_status', 'pending' ); 26 add_option( 'pay_advantage_make_payment_button', 'Make a payment' ); 26 27 27 28 // ensure instance_id is not empty -
pay-advantage/trunk/payadvantage.php
r2722301 r2745605 16 16 * Plugin URI: https://www.payadvantage.com.au/ 17 17 * Description: This plugin adds a payment gateway to Woo Commerce as well as a widget for credit card and BPay payments. 18 * Version: 3.2. 018 * Version: 3.2.1 19 19 * Author: Pay Advantage 20 20 * Author URI: https://www.payadvantage.com.au/ … … 23 23 * Text Domain: PayAdvantage 24 24 * Domain Path: /languages 25 * WC tested up to: 6. 3.125 * WC tested up to: 6.5.1 26 26 * WC requires at least: 3.7 27 27 */ … … 30 30 * Current plugin version. 31 31 */ 32 define( 'PayAdvantagePluginVersion', '3.2. 0' );32 define( 'PayAdvantagePluginVersion', '3.2.1' ); 33 33 34 34 include( plugin_dir_path( __FILE__ ) . '/includes/payadvantage-files.php' ); … … 44 44 define( 'PAYADV_API_URL_SANDBOX', 'https://api.test.payadvantage.com.au/latest' ); 45 45 define( 'PAYADV_API_URL_LIVE', 'https://api.payadvantage.com.au/latest' ); 46 define( 'PAYADV_OPTIONS_REQUIRE_MOBILE', 1 );47 define( 'PAYADV_OPTIONS_REQUIRE_ADDRESS', 0 );48 define( 'PAYADV_OPTIONS_REQUIRE_COUNTRY', 0 );49 define( 'PAYADV_OPTIONS_SHOW_BPAY', 1 );50 define( 'PAYADV_OPTIONS_SHOW_CREDIT_CARD', 1 );51 define( 'PAYADV_OPTIONS_CREDIT_CARD_DESCRIPTION', 'Pay Advantage' );52 define( 'PAYADV_OPTIONS_SHOW_WIDGET_TO_USERS_NOT_LOGGED_IN', 0 );53 46 define( 'PAYADV_MAX_LOG_SIZE_CHARS', 2000 ); 54 47 }
Note: See TracChangeset
for help on using the changeset viewer.