Plugin Directory

Changeset 2728409


Ignore:
Timestamp:
05/23/2022 10:06:01 AM (4 years ago)
Author:
tomlister
Message:

What changes made in your Plugin

Location:
payflex-payment-gateway
Files:
10 added
2 edited

Legend:

Unmodified
Added
Removed
  • payflex-payment-gateway/trunk/partpay.php

    r2711416 r2728409  
    33Plugin Name: Payflex Payment Gateway
    44Description: Use Payflex as a credit card processor for WooCommerce.
    5 Version: 2.3.4
     5Version: 2.3.5
    66Author: Payflex
    77*/
     
    1010 * Check if WooCommerce is activated
    1111 */
    12  $plugin_path = trailingslashit( WP_PLUGIN_DIR ) . 'woocommerce/woocommerce.php';
    13 if (in_array( $plugin_path, wp_get_active_and_valid_plugins())) {
    14    
     12if ( 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';
     18if (in_array( $plugin_path, $fun )) {
     19   
    1520    add_action('plugins_loaded', 'partpay_gateway', 0);
    1621
  • payflex-payment-gateway/trunk/readme.txt

    r2711416 r2728409  
    55Tested up to: 5.9
    66Requires PHP: 7.0
    7 Stable tag: 2.3.4
     7Stable tag: 2.3.5
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    6464= 2.3.4 =
    6565     * 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.