Changeset 3422751
- Timestamp:
- 12/18/2025 10:58:13 AM (3 months ago)
- Location:
- shipbubble
- Files:
-
- 59 added
- 4 edited
-
tags/2.10.3 (added)
-
tags/2.10.3/admin (added)
-
tags/2.10.3/admin/css (added)
-
tags/2.10.3/admin/css/styles-wc.css (added)
-
tags/2.10.3/admin/index.php (added)
-
tags/2.10.3/admin/js (added)
-
tags/2.10.3/admin/js/ajax-create-shipment.js (added)
-
tags/2.10.3/admin/js/ajax-validate-address.js (added)
-
tags/2.10.3/admin/js/ajax-validate-auth.js (added)
-
tags/2.10.3/admin/settings (added)
-
tags/2.10.3/admin/settings/js (added)
-
tags/2.10.3/admin/settings/js/settings.js (added)
-
tags/2.10.3/admin/settings/settings-menu.php (added)
-
tags/2.10.3/admin/settings/templates (added)
-
tags/2.10.3/admin/settings/templates/api-keys.php (added)
-
tags/2.10.3/admin/settings/templates/local-pickup.php (added)
-
tags/2.10.3/admin/settings/templates/sender-details.php (added)
-
tags/2.10.3/admin/woocommerce (added)
-
tags/2.10.3/admin/woocommerce/async-create-shipment.php (added)
-
tags/2.10.3/admin/woocommerce/async-validate-address.php (added)
-
tags/2.10.3/admin/woocommerce/enqueue-styles.php (added)
-
tags/2.10.3/admin/woocommerce/orders.php (added)
-
tags/2.10.3/admin/woocommerce/shipping-settings.php (added)
-
tags/2.10.3/admin/wordpress (added)
-
tags/2.10.3/admin/wordpress/async-validate-auth.php (added)
-
tags/2.10.3/admin/wordpress/index.php (added)
-
tags/2.10.3/admin/wordpress/settings-callback.php (added)
-
tags/2.10.3/admin/wordpress/settings-field-validation.php (added)
-
tags/2.10.3/admin/wordpress/settings-menu.php (added)
-
tags/2.10.3/admin/wordpress/settings-page.php (added)
-
tags/2.10.3/admin/wordpress/settings-register.php (added)
-
tags/2.10.3/includes (added)
-
tags/2.10.3/includes/compatibilities.php (added)
-
tags/2.10.3/includes/constants.php (added)
-
tags/2.10.3/includes/core-methods.php (added)
-
tags/2.10.3/includes/endpoints.php (added)
-
tags/2.10.3/includes/index.php (added)
-
tags/2.10.3/index.php (added)
-
tags/2.10.3/languages (added)
-
tags/2.10.3/languages/index.php (added)
-
tags/2.10.3/license.txt (added)
-
tags/2.10.3/public (added)
-
tags/2.10.3/public/async-checkout-couriers.php (added)
-
tags/2.10.3/public/css (added)
-
tags/2.10.3/public/css/styles-wc.css (added)
-
tags/2.10.3/public/images (added)
-
tags/2.10.3/public/images/logo.svg (added)
-
tags/2.10.3/public/js (added)
-
tags/2.10.3/public/js/blockui (added)
-
tags/2.10.3/public/js/blockui/jquery.blockUI.js (added)
-
tags/2.10.3/public/js/couriers-on-checkout.js (added)
-
tags/2.10.3/public/js/shipbubble-local-pickup.js (added)
-
tags/2.10.3/public/js/sweetalert2.min.js (added)
-
tags/2.10.3/public/woocommerce (added)
-
tags/2.10.3/public/woocommerce/checkout.php (added)
-
tags/2.10.3/public/woocommerce/enqueue-styles.php (added)
-
tags/2.10.3/readme.txt (added)
-
tags/2.10.3/shipbubble.php (added)
-
tags/2.10.3/uninstall.php (added)
-
trunk/includes/compatibilities.php (modified) (1 diff)
-
trunk/includes/core-methods.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shipbubble.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shipbubble/trunk/includes/compatibilities.php
r3394617 r3422751 1 1 <?php 2 2 3 if ( is_plugin_active('funnel-builder/funnel-builder.php')) {3 if (shipbubble_is_plugin_active('funnel-builder/funnel-builder.php')) { 4 4 add_filter('wfacp_show_shipping_options', '__return_true' ,9999); 5 5 add_filter('wfacp_show_shipping_package_name', '__return_true' ,9999); -
shipbubble/trunk/includes/core-methods.php
r3326861 r3422751 422 422 ), 423 423 array( 424 'check' => function() { return ( is_plugin_active('yaycurrency/yay-currency.php') ||is_plugin_active('yaycurrency-pro/yay-currency.php')) && class_exists('Yay_Currency\Helpers\YayCurrencyHelper'); },424 'check' => function() { return (shipbubble_is_plugin_active('yaycurrency/yay-currency.php') || shipbubble_is_plugin_active('yaycurrency-pro/yay-currency.php')) && class_exists('Yay_Currency\Helpers\YayCurrencyHelper'); }, 425 425 'get_currency' => function() { 426 426 $currency_data = YayCurrencyHelper::get_current_currency(); … … 641 641 return $address . ', ' . $state . ', ' . $country; 642 642 } 643 644 645 /** 646 * Checks if a WordPress plugin is active, considering both single-site and multisite installations. 647 * 648 * @param $plugin_slug 649 * @return bool 650 */ 651 function shipbubble_is_plugin_active($plugin_slug): bool 652 { 653 if (!function_exists('is_plugin_active')) require_once ABSPATH . 'wp-admin/includes/plugin.php'; 654 655 if (is_multisite()) { 656 return is_plugin_active_for_network($plugin_slug) || is_plugin_active($plugin_slug); 657 } 658 659 return is_plugin_active($plugin_slug); 660 } -
shipbubble/trunk/readme.txt
r3409333 r3422751 5 5 Requires at least: 4.0 6 6 Tested up to: 6.5 7 Stable tag: 2.10. 27 Stable tag: 2.10.3 8 8 Requires PHP: 5.6 9 9 License: GPLv3 or later … … 70 70 71 71 == Changelog == 72 == 2.10.3 = 73 * Multi site compability fix 74 72 75 = 2.10.2 = 73 76 * Fixes and Improvements -
shipbubble/trunk/shipbubble.php
r3409333 r3422751 9 9 * Requires at least: 4.0 10 10 * Tested up to: 6.8 11 * Version: 2.10. 211 * Version: 2.10.3 12 12 * Requires PHP: 5.6 13 13 * Text Domain: shipbubble
Note: See TracChangeset
for help on using the changeset viewer.