Changeset 2800067
- Timestamp:
- 10/17/2022 02:18:40 PM (3 years ago)
- Location:
- shiptimize-for-woocommerce/trunk
- Files:
-
- 2 edited
-
includes/admin/class-shiptimize-shipping.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shiptimize-for-woocommerce/trunk/includes/admin/class-shiptimize-shipping.php
r2800059 r2800067 802 802 public function validate_excludeclasses_field( \$key , \$value ) { 803 803 if ( \$key === 'excludeclasses' ) { 804 return implode( ',' , \$value );804 return empty(\$value) ? '' : implode( ',' , \$value ); 805 805 } 806 806 return \$value; … … 1066 1066 public function validate_excludeclasses_field( \$key , \$value ) { 1067 1067 if ( \$key === 'excludeclasses' ) { 1068 return implode( ',' , \$value );1068 return empty(\$value) ? '' : implode( ',' , \$value ); 1069 1069 } 1070 1070 return \$value; -
shiptimize-for-woocommerce/trunk/readme.txt
r2800059 r2800067 60 60 61 61 = 3.1.55 - 2022-10-17 = 62 * enhancement - If advanced shipmentis installed and active allow sellers to specify certain classes where our shipping methods will not display at checkout.62 * enhancement - If plugin Advanced Shipping is installed and active allow sellers to specify certain classes where our shipping methods will not display at checkout. 63 63 64 64 = 3.1.53 - 2022-09-07 =
Note: See TracChangeset
for help on using the changeset viewer.