Plugin Directory

Changeset 3102551


Ignore:
Timestamp:
06/14/2024 03:20:36 AM (22 months ago)
Author:
breadintegrations
Message:

Version 3.5.3 changes

Location:
bread-finance/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • bread-finance/trunk/README.md

    r3088054 r3102551  
    44Requires at least: 4.9
    55Tested up to: 6.1.1
    6 Stable tag: 3.5.2
     6Stable tag: 3.5.3
    77Requires PHP: 5.6
    88WC requires at least: 3.0
     
    7272
    7373== Changelog ==
     74
     75= 3.5.3
     76* Current release
     77* Check shipping method on page load
     78
    7479= 3.5.2
    75 * Current release
    7680* Add support for WPCaptcha
    7781
  • bread-finance/trunk/assets/js/v2/main.js

    r3088054 r3102551  
    11/**
    2  * Bread v3.5.2
     2 * Bread v3.5.3
    33 *
    44 * @author Maritim, Kiprotich
     
    726726        var self = this,
    727727            isOrderPayForm = $('form#order_review').length > 0;
    728        
     728
    729729        $('form.checkout').on('change', 'input[name^="shipping_method"]', self.checkShippingAndHidePayment);
    730730        setTimeout(function() {
    731731            self.checkShippingAndHidePayment();
    732732        }, 1000);
    733 
     733       
    734734        if (isOrderPayForm) {
    735735            self.$form.on('submit', function() {
     
    760760     */
    761761    CheckoutHandler.prototype.checkShippingAndHidePayment = function() {
    762         const selected_method = $('input[name^="shipping_method"]:checked').val();
     762        const selected_method =
     763          $('input[name^="shipping_method"]').val() ||
     764          $('input[name^="shipping_method"]:checked').val();
    763765       
    764766        // dont hide payment if enabled_for_shipping is not set
  • bread-finance/trunk/bread-finance.php

    r3088054 r3102551  
    66 * Author: Bread Financial
    77 * Author URI: https://payments.breadfinancial.com/
    8  * Version: 3.5.2
     8 * Version: 3.5.3
    99 * Text Domain: bread_finance
    1010 * Domain Path: /i18n/languages/
     
    206206           
    207207            //Require minimums and constants
    208             define('WC_' . $tenant . '_VERSION', '3.5.2');
     208            define('WC_' . $tenant . '_VERSION', '3.5.3');
    209209            define('WC_' . $tenant . '_MIN_PHP_VER', '5.6.0');
    210210            define('WC_' . $tenant . '_MIN_WC_VER', '3.4.0');
Note: See TracChangeset for help on using the changeset viewer.