Changeset 3444088
- Timestamp:
- 01/21/2026 12:57:29 PM (2 months ago)
- Location:
- woot-ro/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
includes/shipping/class-woot-shipping-services.php (modified) (2 diffs)
-
woot.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woot-ro/trunk/README.txt
r3440105 r3444088 4 4 Requires at least: 4.0 5 5 Tested up to: 6.9 6 Stable tag: 2.1. 36 Stable tag: 2.1.4 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 78 78 79 79 == Changelog == 80 81 = 2.1.4 = 82 * Fix: Resolved conflict with WooCommerce payment gateway settings (COD/Plata Ramburs) 83 * Fix: Payment gateway initialization no longer interferes when accessing WooCommerce Payments settings 80 84 81 85 = 2.1.3 = … … 159 163 == Upgrade Notice == 160 164 165 = 2.1.4 = 166 * Fix: Resolved conflict with WooCommerce payment gateway settings. Users who experienced issues accessing COD (Plata Ramburs) settings should upgrade immediately. 167 161 168 = 2.1.3 = 162 169 * New markup (adaos) fields for services and payment methods. Add percentage and/or fixed amount to shipping prices and payment fees. -
woot-ro/trunk/includes/shipping/class-woot-shipping-services.php
r3440105 r3444088 259 259 } 260 260 261 // Add payment method fees section 262 if (function_exists('WC') && WC()->payment_gateways()) { 261 // Add payment method fees section - only when accessing settings to avoid 262 // interfering with WooCommerce payment gateway initialization on other pages 263 if ($this->is_accessing_settings() && function_exists('WC') && WC()->payment_gateways()) { 263 264 $gateways = WC()->payment_gateways()->payment_gateways(); 264 265 265 if ($gateways && $this->is_accessing_settings()) {266 if ($gateways) { 266 267 $fields['payment_fees'] = array( 267 268 'title' => __('Payment Method Fees', 'woot-ro'), … … 269 270 'description' => __('Extra charges for specific payment methods (applies to all services)', 'woot-ro'), 270 271 ); 271 } 272 273 if ($gateways) { 272 274 273 foreach ($gateways as $gateway) { 275 274 if ($gateway->enabled == 'yes') { -
woot-ro/trunk/woot.php
r3440105 r3444088 17 17 * Plugin URI: https://woot.ro 18 18 * Description: Integrates all popular couriers in Romania, providing a one-stop solution for all your delivery needs 19 * Version: 2.1. 319 * Version: 2.1.4 20 20 * Author: Woot.ro 21 21 * Author URI: https://woot.ro … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define('WOOT_VERSION', '2.1. 3');38 define('WOOT_VERSION', '2.1.4'); 39 39 40 40 /**
Note: See TracChangeset
for help on using the changeset viewer.