Plugin Directory

Changeset 3161935


Ignore:
Timestamp:
10/03/2024 08:43:44 AM (18 months ago)
Author:
wclovers
Message:

WCFM Marketplace 3.6.12 version update

Location:
wc-multivendor-marketplace
Files:
980 added
7 edited

Legend:

Unmodified
Added
Removed
  • wc-multivendor-marketplace/trunk/core/class-wcfmmp-shortcode.php

    r2887030 r3161935  
    11771177        echo '<div class="wcfm_store_instagram_widget" style="margin-bottom:50px;">';
    11781178       
    1179    
    1180        
    11811179        echo '</div>';
    11821180       
    1183         $content .= ob_get_clean();
    1184        
    1185         return $content;
     1181        return ob_get_clean();
    11861182    }
    11871183   
  • wc-multivendor-marketplace/trunk/core/class-wcfmmp.php

    r3057207 r3161935  
    107107        global $WCFMmp;
    108108
     109        $this->setup_properties();
     110
    109111        $active_payment_methods = get_wcfm_marketplace_active_withdrwal_payment_methods();
    110112        $payment_method = 'stripe_split';
  • wc-multivendor-marketplace/trunk/includes/payment-gateways/class-wcfmmp-gateway-stripe_split.php

    r3156420 r3161935  
    1111use Stripe\Transfer as Stripe_Transfer;
    1212use Stripe\Token as Stripe_Token;
    13 use \Stripe\StripeClient;
    1413
    1514class WCFMmp_Gateway_Stripe_Split extends WC_Payment_Gateway {
     
    8584        }
    8685
    87         $this->stripe = new StripeClient($this->secret_key);
    88        
    8986        $this->title        = apply_filters( 'wcfmmp_stripe_split_pay_title', __('Credit or Debit Card (Stripe)', 'wc-multivendor-marketplace') );
    9087        $this->description  = __('Pay with your credit or debit card via Stripe.', 'wc-multivendor-marketplace');
  • wc-multivendor-marketplace/trunk/readme.txt

    r3156420 r3161935  
    88WC tested up to: 9.3.0
    99Requires PHP: 5.6
    10 Stable tag: 3.6.11
     10Stable tag: 3.6.12
    1111License: GPLv2 or later
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    256256== Changelog ==
    257257
     258= 3.6.12 =
     259*Updated - 02/10/2024*
     260
     261* Fixed    – Cross Site Scripting (XSS) vulnerability in store list search as reported by Le Ngoc Anh, Credit goes to Le Ngoc Anh for identifying this issue.
     262* Fixed    – PHP Fatal error Class Stripe\StripeClient not found when Woocommerce Booking plugin active
     263* Fixed    – Stripe Gateway is disabled. Please re-check withdrawal setting panel. This occurs mostly due to absence of Stripe Secret Key when Woocommerce Booking plugin active
     264
    258265= 3.6.11 =
    259266*Updated - 23/09/2024*
    260267
    261268* Enhanced – Added condition for missing source_transaction parameter in stripe transfer args
    262 * Fixed    –  Cross Site Scripting (XSS) vulnerability in store list search as reported by Le Ngoc Anh, Credit goes to Le Ngoc Anh Wesley for identifying this issue.
    263269* Fixed    – Stripe Split Payment Issue with Cross-Border Payments: If the platform account and connected account(s) are not from the same country, Stripe payments fail when using "direct charge" mode.
    264270* Fixed    – Minor typo & bug fixes
     
    17131719== Upgrade Notice ==
    17141720
    1715 = 3.6.11 =
    1716 * Enhanced – Added condition for missing source_transaction parameter in stripe transfer args
    1717 * Fixed    –  Cross Site Scripting (XSS) vulnerability in store list search as reported by Le Ngoc Anh, Credit goes to Le Ngoc Anh Wesley for identifying this issue.
    1718 * Fixed    – Stripe Split Payment Issue with Cross-Border Payments: If the platform account and connected account(s) are not from the same country, Stripe payments fail when using "direct charge" mode.
    1719 * Fixed    – Minor typo & bug fixes
     1721= 3.6.12 =
     1722* Fixed    – Cross Site Scripting (XSS) vulnerability in store list search as reported by Le Ngoc Anh, Credit goes to Le Ngoc Anh for identifying this issue.
     1723* Fixed    – PHP Fatal error Class Stripe\StripeClient not found when Woocommerce Booking plugin active
     1724* Fixed    – Stripe Gateway is disabled. Please re-check withdrawal setting panel. This occurs mostly due to absence of Stripe Secret Key when Woocommerce Booking plugin active
  • wc-multivendor-marketplace/trunk/views/store-lists/wcfmmp-view-store-lists-search-form.php

    r3156420 r3161935  
    5555$radius_unit = isset( $WCFMmp->wcfmmp_marketplace_options['radius_unit'] ) ? $WCFMmp->wcfmmp_marketplace_options['radius_unit'] : 'km';
    5656
    57 $search_radius_range    = isset( $_GET['wcfmmp_radius_range'] ) ? sanitize_text_field($_GET['wcfmmp_radius_range']) : $search_radius_range;
    58 $search_radius_lat      = isset( $_GET['wcfmmp_radius_lat'] ) ? sanitize_text_field($_GET['wcfmmp_radius_lat']) : $search_radius_lat;
    59 $search_radius_lng      = isset( $_GET['wcfmmp_radius_lng'] ) ? sanitize_text_field($_GET['wcfmmp_radius_lng']) : $search_radius_lng;
     57$search_radius_range    = isset( $_GET['wcfmmp_radius_range'] ) ? esc_attr($_GET['wcfmmp_radius_range']) : $search_radius_range;
     58$search_radius_lat      = isset( $_GET['wcfmmp_radius_lat'] ) ? esc_attr($_GET['wcfmmp_radius_lat']) : $search_radius_lat;
     59$search_radius_lng      = isset( $_GET['wcfmmp_radius_lng'] ) ? esc_attr($_GET['wcfmmp_radius_lng']) : $search_radius_lng;
    6060
    6161$args = array(
  • wc-multivendor-marketplace/trunk/wc-multivendor-marketplace-config.php

    r3156420 r3161935  
    55define('WCFMmp_TEXT_DOMAIN', 'wc-multivendor-marketplace');
    66
    7 define('WCFMmp_VERSION', '3.6.11');
     7define('WCFMmp_VERSION', '3.6.12');
    88
    99define('WCFMmp_SERVER_URL', 'https://wclovers.com');
  • wc-multivendor-marketplace/trunk/wc-multivendor-marketplace.php

    r3156420 r3161935  
    55 * Description: Most featured and flexible marketplace solution for your e-commerce store. Simply and Smoothly.
    66 * Author: WC Lovers
    7  * Version: 3.6.11
     7 * Version: 3.6.12
    88 * Author URI: https://wclovers.com
    99 *
Note: See TracChangeset for help on using the changeset viewer.