Changeset 3381665
- Timestamp:
- 10/21/2025 07:06:25 AM (5 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
r3374732 r3381665 1 1 *** LitCommerce Changelog *** 2 3 2025-10-21 - version 1.3.2 4 * Fixed - Escape Html 2 5 3 6 2025-10-08 - version 1.3.1 -
litcommerce/trunk/litcommerce.php
r3374732 r3381665 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. 15 Version: 1.3.2 6 6 Author: LitCommerce 7 7 Author URI: https://litcommerce.com … … 473 473 $order = $item->get_order(); 474 474 if (is_object($order) && method_exists($order, 'get_meta') && $order->get_meta('_litc_has_tax')) { 475 $currency = $order->get_currency();476 $currency_symbol = get_woocommerce_currency_symbol($currency);475 $currency = $order->get_currency(); 476 $amount = (float) $value; 477 477 if ($value) { 478 478 echo '<td class="item_cost" width="1%" data-sort-value="float"> 479 <div class="view"> 480 <span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">' . esc_textarea($currency_symbol) . '</span>' . esc_textarea($value) . '</span> </div> 481 </td>'; 479 <div class="view">' . 480 wc_price( $amount, [ 'currency' => $currency ] ) . 481 '</div> 482 </td>';; 482 483 } else { 483 484 echo '<td></td>'; -
litcommerce/trunk/readme.txt
r3374732 r3381665 4 4 Tags: WooCommerce, Amazon, eBay, Etsy, TikTok 5 5 Tested up to: 6.8 6 Stable tag: 1.3. 16 Stable tag: 1.3.2 7 7 License: GPL-2.0 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
litcommerce/trunk/steps/SendWooCommerceKeys.php
r3373504 r3381665 27 27 $url .= '&channel_url=' . urlencode( site_url() ); 28 28 $url .= '&from_app=marketplace'; 29 $url .= '&version_plugin=1.2.5'; 29 $url .= '&version_plugin=1.3.2'; 30 $url .= '&app_store=wordpress'; 30 31 $reconnect = filter_input( INPUT_GET, 'reconnect', FILTER_SANITIZE_NUMBER_INT ); 31 32
Note: See TracChangeset
for help on using the changeset viewer.