Changeset 2728409
- Timestamp:
- 05/23/2022 10:06:01 AM (4 years ago)
- Location:
- payflex-payment-gateway
- Files:
-
- 10 added
- 2 edited
-
tags/2.3.5 (added)
-
tags/2.3.5/Checkout.png (added)
-
tags/2.3.5/PIE-CHART-01.png (added)
-
tags/2.3.5/PIE-CHART-02.png (added)
-
tags/2.3.5/PIE-CHART-03.png (added)
-
tags/2.3.5/PIE-CHART-04.png (added)
-
tags/2.3.5/config (added)
-
tags/2.3.5/config/config.php (added)
-
tags/2.3.5/partpay.php (added)
-
tags/2.3.5/readme.txt (added)
-
trunk/partpay.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
payflex-payment-gateway/trunk/partpay.php
r2711416 r2728409 3 3 Plugin Name: Payflex Payment Gateway 4 4 Description: Use Payflex as a credit card processor for WooCommerce. 5 Version: 2.3. 45 Version: 2.3.5 6 6 Author: Payflex 7 7 */ … … 10 10 * Check if WooCommerce is activated 11 11 */ 12 $plugin_path = trailingslashit( WP_PLUGIN_DIR ) . 'woocommerce/woocommerce.php'; 13 if (in_array( $plugin_path, wp_get_active_and_valid_plugins())) { 14 12 if ( is_multisite() ) { 13 $fun = wp_get_active_network_plugins(); 14 }else{ 15 $fun = wp_get_active_and_valid_plugins(); 16 } 17 $plugin_path = trailingslashit( WP_PLUGIN_DIR ) . 'woocommerce/woocommerce.php'; 18 if (in_array( $plugin_path, $fun )) { 19 15 20 add_action('plugins_loaded', 'partpay_gateway', 0); 16 21 -
payflex-payment-gateway/trunk/readme.txt
r2711416 r2728409 5 5 Tested up to: 5.9 6 6 Requires PHP: 7.0 7 Stable tag: 2.3. 47 Stable tag: 2.3.5 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 64 64 = 2.3.4 = 65 65 * handled payment callback event for google analytics sales 66 = 2.3.5 = 67 * Added support to multisite
Note: See TracChangeset
for help on using the changeset viewer.