Plugin Directory

Changeset 3394548


Ignore:
Timestamp:
11/12/2025 05:18:56 PM (5 months ago)
Author:
linknacional
Message:

Update to version 2.7.1 from GitHub

Location:
invoice-payment-for-woocommerce
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • invoice-payment-for-woocommerce/tags/2.7.1/Admin/js/wc-invoice-payment-product-search.js

    r3360041 r3394548  
    278278                amountInput.value = totalPrice;
    279279               
     280                // Make fields readonly for real WooCommerce products
     281                nameInput.readOnly = true;
     282                amountInput.readOnly = true;
     283               
    280284                // Add hidden fields to store product information for real WooCommerce items
    281285                const hiddenProductId = document.createElement('input');
  • invoice-payment-for-woocommerce/tags/2.7.1/Includes/WcPaymentInvoiceFeeOrDiscount.php

    r3368013 r3394548  
    7272            );
    7373   
    74             wp_enqueue_style(
    75                 'wcInvoicePaymentFeeOrDiscountStyle',
    76                 WC_PAYMENT_INVOICE_ROOT_URL . 'Public/css/wc-invoice-payment-fee-or-discount.css',
    77                 [],
    78                 WC_PAYMENT_INVOICE_VERSION,
    79                 'all'
    80             );
    81    
    8274            wp_localize_script('wcInvoicePaymentFeeOrDiscountScript', 'wcInvoicePaymentFeeOrDiscountVariables', [
    8375                'methods' => $data,
  • invoice-payment-for-woocommerce/tags/2.7.1/README.txt

    r3391198 r3394548  
    55Requires at least: 5.7
    66Tested up to: 6.8
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88Requires PHP: 7.2
    99License: GPLv3 or later
     
    118118
    119119== Changelog ==
     120= 2.7.1 = *11/12/2025*
     121* CSS loading fix;
     122* Addition of read-only on selected product in the invoice.
     123
    120124= 2.7.0 = *10/23/2025*
    121 * Add donation product type..
     125* Add donation product type.
    122126
    123127= 2.6.4 = *09/30/2025*
  • invoice-payment-for-woocommerce/tags/2.7.1/wc-invoice-payment.php

    r3391198 r3394548  
    1616 * Plugin URI:        https://www.linknacional.com/wordpress/plugins/
    1717 * Description:       Invoice payment generation and management for WooCommerce.
    18  * Version:           2.7.0
     18 * Version:           2.7.1
    1919 * Author:            Link Nacional
    2020 * Author URI:        https://www.linknacional.com/
     
    4242 * Rename this for your plugin and update it as you release new versions.
    4343 */
    44 define('WC_PAYMENT_INVOICE_VERSION', '2.7.0');
     44define('WC_PAYMENT_INVOICE_VERSION', '2.7.1');
    4545define('WC_PAYMENT_INVOICE_TRANSLATION_PATH', plugin_dir_path(__FILE__) . 'languages/');
    4646define('WC_PAYMENT_INVOICE_ROOT_DIR', plugin_dir_path(__FILE__));
  • invoice-payment-for-woocommerce/trunk/Admin/js/wc-invoice-payment-product-search.js

    r3360041 r3394548  
    278278                amountInput.value = totalPrice;
    279279               
     280                // Make fields readonly for real WooCommerce products
     281                nameInput.readOnly = true;
     282                amountInput.readOnly = true;
     283               
    280284                // Add hidden fields to store product information for real WooCommerce items
    281285                const hiddenProductId = document.createElement('input');
  • invoice-payment-for-woocommerce/trunk/Includes/WcPaymentInvoiceFeeOrDiscount.php

    r3368013 r3394548  
    7272            );
    7373   
    74             wp_enqueue_style(
    75                 'wcInvoicePaymentFeeOrDiscountStyle',
    76                 WC_PAYMENT_INVOICE_ROOT_URL . 'Public/css/wc-invoice-payment-fee-or-discount.css',
    77                 [],
    78                 WC_PAYMENT_INVOICE_VERSION,
    79                 'all'
    80             );
    81    
    8274            wp_localize_script('wcInvoicePaymentFeeOrDiscountScript', 'wcInvoicePaymentFeeOrDiscountVariables', [
    8375                'methods' => $data,
  • invoice-payment-for-woocommerce/trunk/README.txt

    r3391198 r3394548  
    55Requires at least: 5.7
    66Tested up to: 6.8
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88Requires PHP: 7.2
    99License: GPLv3 or later
     
    118118
    119119== Changelog ==
     120= 2.7.1 = *11/12/2025*
     121* CSS loading fix;
     122* Addition of read-only on selected product in the invoice.
     123
    120124= 2.7.0 = *10/23/2025*
    121 * Add donation product type..
     125* Add donation product type.
    122126
    123127= 2.6.4 = *09/30/2025*
  • invoice-payment-for-woocommerce/trunk/wc-invoice-payment.php

    r3391198 r3394548  
    1616 * Plugin URI:        https://www.linknacional.com/wordpress/plugins/
    1717 * Description:       Invoice payment generation and management for WooCommerce.
    18  * Version:           2.7.0
     18 * Version:           2.7.1
    1919 * Author:            Link Nacional
    2020 * Author URI:        https://www.linknacional.com/
     
    4242 * Rename this for your plugin and update it as you release new versions.
    4343 */
    44 define('WC_PAYMENT_INVOICE_VERSION', '2.7.0');
     44define('WC_PAYMENT_INVOICE_VERSION', '2.7.1');
    4545define('WC_PAYMENT_INVOICE_TRANSLATION_PATH', plugin_dir_path(__FILE__) . 'languages/');
    4646define('WC_PAYMENT_INVOICE_ROOT_DIR', plugin_dir_path(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.