Changeset 3061783
- Timestamp:
- 03/31/2024 03:59:02 PM (2 years ago)
- Location:
- user-role-based-shipping-method
- Files:
-
- 4 edited
- 5 copied
-
tags/3.1.0 (copied) (copied from user-role-based-shipping-method/trunk)
-
tags/3.1.0/includes/class-pvalley-user-role-based-shipping-manage-shipping.php (copied) (copied from user-role-based-shipping-method/trunk/includes/class-pvalley-user-role-based-shipping-manage-shipping.php)
-
tags/3.1.0/includes/class-pvalley-user-role-based-shipping-settings.php (copied) (copied from user-role-based-shipping-method/trunk/includes/class-pvalley-user-role-based-shipping-settings.php)
-
tags/3.1.0/includes/class-pvalley-user-role-based-shipping.php (modified) (1 diff)
-
tags/3.1.0/pvalley-user-role-based-shipping.php (copied) (copied from user-role-based-shipping-method/trunk/pvalley-user-role-based-shipping.php) (2 diffs)
-
tags/3.1.0/readme.txt (copied) (copied from user-role-based-shipping-method/trunk/readme.txt) (2 diffs)
-
trunk/includes/class-pvalley-user-role-based-shipping.php (modified) (1 diff)
-
trunk/pvalley-user-role-based-shipping.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
user-role-based-shipping-method/tags/3.1.0/includes/class-pvalley-user-role-based-shipping.php
r2021442 r3061783 20 20 $this->init(); 21 21 add_filter( 'plugin_action_links_' . plugin_basename( PVALLEY_URBS_PLUGIN_FILE ), __CLASS__. '::plugin_action_links' ); 22 // Compatibility with High Performance order storage feature of WooCommerce 23 add_action('before_woocommerce_init', array($this, 'hposCompatibility')); 24 } 25 26 /** 27 * High performance order storage feature compatibility. 28 * 29 * hpos - High performance order storage 30 * 31 * @see https://woo.com/document/high-performance-order-storage/ 32 * @return void 33 */ 34 public function hposCompatibility( ) { 35 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 36 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', PVALLEY_URBS_PLUGIN_FILE, true ); 37 } 22 38 } 23 39 -
user-role-based-shipping-method/tags/3.1.0/pvalley-user-role-based-shipping.php
r3048574 r3061783 4 4 * Plugin URI: 5 5 * Description: Hide/show shipping methods based on user role and destination country. 6 * Version: 3. 0.06 * Version: 3.1.0 7 7 * Author: Pluginvalley 8 8 * Author URI: … … 11 11 * Requires at least: 5.0 12 12 * WC requires at least: 3.0.0 13 * WC tested up to: 8. 6.113 * WC tested up to: 8.7 14 14 */ 15 15 -
user-role-based-shipping-method/tags/3.1.0/readme.txt
r3048588 r3061783 6 6 Requires at least: 5.0 7 7 Tested up to: 6.4 8 Stable tag: 3. 0.08 Stable tag: 3.1.0 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 140 140 * Tested with WooCommerce 8.6.1 141 141 142 = 3.1.0 = 143 * Compatibility with WooCommerce high performance order storage feature 144 * Tested with WooCommerce 8.7.0 145 142 146 == Upgrade Notice == 143 147 144 = 3. 0.0 =145 * Feature to hide all the shipping methods, and show only free shipping method, when free shipping is available during checkout146 * Tested with WooCommerce 8. 6.1148 = 3.1.0 = 149 * Compatibility with WooCommerce high performance order storage feature 150 * Tested with WooCommerce 8.7.0 -
user-role-based-shipping-method/trunk/includes/class-pvalley-user-role-based-shipping.php
r2021442 r3061783 20 20 $this->init(); 21 21 add_filter( 'plugin_action_links_' . plugin_basename( PVALLEY_URBS_PLUGIN_FILE ), __CLASS__. '::plugin_action_links' ); 22 // Compatibility with High Performance order storage feature of WooCommerce 23 add_action('before_woocommerce_init', array($this, 'hposCompatibility')); 24 } 25 26 /** 27 * High performance order storage feature compatibility. 28 * 29 * hpos - High performance order storage 30 * 31 * @see https://woo.com/document/high-performance-order-storage/ 32 * @return void 33 */ 34 public function hposCompatibility( ) { 35 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 36 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', PVALLEY_URBS_PLUGIN_FILE, true ); 37 } 22 38 } 23 39 -
user-role-based-shipping-method/trunk/pvalley-user-role-based-shipping.php
r3048574 r3061783 4 4 * Plugin URI: 5 5 * Description: Hide/show shipping methods based on user role and destination country. 6 * Version: 3. 0.06 * Version: 3.1.0 7 7 * Author: Pluginvalley 8 8 * Author URI: … … 11 11 * Requires at least: 5.0 12 12 * WC requires at least: 3.0.0 13 * WC tested up to: 8. 6.113 * WC tested up to: 8.7 14 14 */ 15 15 -
user-role-based-shipping-method/trunk/readme.txt
r3048588 r3061783 6 6 Requires at least: 5.0 7 7 Tested up to: 6.4 8 Stable tag: 3. 0.08 Stable tag: 3.1.0 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 140 140 * Tested with WooCommerce 8.6.1 141 141 142 = 3.1.0 = 143 * Compatibility with WooCommerce high performance order storage feature 144 * Tested with WooCommerce 8.7.0 145 142 146 == Upgrade Notice == 143 147 144 = 3. 0.0 =145 * Feature to hide all the shipping methods, and show only free shipping method, when free shipping is available during checkout146 * Tested with WooCommerce 8. 6.1148 = 3.1.0 = 149 * Compatibility with WooCommerce high performance order storage feature 150 * Tested with WooCommerce 8.7.0
Note: See TracChangeset
for help on using the changeset viewer.