Changeset 3413789
- Timestamp:
- 12/08/2025 02:50:49 AM (3 months ago)
- Location:
- litcommerce/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
litcommerce.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
steps/SendWooCommerceKeys.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
litcommerce/trunk/changelog.txt
r3381665 r3413789 1 1 *** LitCommerce Changelog *** 2 3 2025-12-08 - version 1.3.3 4 * Fixed - Fix Bugs 2 5 3 6 2025-10-21 - version 1.3.2 -
litcommerce/trunk/litcommerce.php
r3381665 r3413789 3 3 Plugin Name: LitCommerce: Multi-channel Selling Tool For WooCommerce 4 4 Description: Helps you easily integrate your WooCommerce store with LitCommerce. 5 Version: 1.3. 25 Version: 1.3.3 6 6 Author: LitCommerce 7 7 Author URI: https://litcommerce.com … … 704 704 ]); 705 705 } 706 707 add_filter( 'woocommerce_can_restore_order_stock', 'litc_conditional_no_restore_stock', 10, 2 ); 708 709 function litc_conditional_no_restore_stock( $can_restore, $order ) { 710 if ( ! $order instanceof WC_Order ) { 711 return $can_restore; 712 } 713 714 if ( $order->get_status() === 'cancelled' || $order->get_status() === 'refunded') { 715 $no_restore = $order->get_meta( 'litc_order_no_restore_stock' ); 716 717 if ( $no_restore == '1' || $no_restore === 'yes' ) { 718 return false; 719 } 720 } 721 722 return $can_restore; 723 } -
litcommerce/trunk/readme.txt
r3381665 r3413789 4 4 Tags: WooCommerce, Amazon, eBay, Etsy, TikTok 5 5 Tested up to: 6.8 6 Stable tag: 1.3. 26 Stable tag: 1.3.3 7 7 License: GPL-2.0 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
litcommerce/trunk/steps/SendWooCommerceKeys.php
r3381665 r3413789 27 27 $url .= '&channel_url=' . urlencode( site_url() ); 28 28 $url .= '&from_app=marketplace'; 29 $url .= '&version_plugin=1.3. 2';29 $url .= '&version_plugin=1.3.3'; 30 30 $url .= '&app_store=wordpress'; 31 31 $reconnect = filter_input( INPUT_GET, 'reconnect', FILTER_SANITIZE_NUMBER_INT );
Note: See TracChangeset
for help on using the changeset viewer.