Plugin Directory

Changeset 3381665


Ignore:
Timestamp:
10/21/2025 07:06:25 AM (5 months ago)
Author:
litexten
Message:

bug fixes

Location:
litcommerce/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • litcommerce/trunk/changelog.txt

    r3374732 r3381665  
    11*** LitCommerce Changelog ***
     2
     32025-10-21 - version 1.3.2
     4* Fixed - Escape Html
    25
    362025-10-08 - version 1.3.1
  • litcommerce/trunk/litcommerce.php

    r3374732 r3381665  
    33Plugin Name: LitCommerce: Multi-channel Selling Tool For WooCommerce
    44Description: Helps you easily integrate your WooCommerce store with LitCommerce.
    5 Version: 1.3.1
     5Version: 1.3.2
    66Author: LitCommerce
    77Author URI: https://litcommerce.com
     
    473473    $order = $item->get_order();
    474474    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;
    477477        if ($value) {
    478478            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>';;
    482483        } else {
    483484            echo '<td></td>';
  • litcommerce/trunk/readme.txt

    r3374732 r3381665  
    44Tags: WooCommerce, Amazon, eBay, Etsy, TikTok
    55Tested up to: 6.8
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77License: GPL-2.0
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • litcommerce/trunk/steps/SendWooCommerceKeys.php

    r3373504 r3381665  
    2727        $url     .= '&channel_url=' . urlencode( site_url() );
    2828        $url     .= '&from_app=marketplace';
    29         $url     .= '&version_plugin=1.2.5';
     29        $url     .= '&version_plugin=1.3.2';
     30        $url     .= '&app_store=wordpress';
    3031        $reconnect = filter_input( INPUT_GET, 'reconnect', FILTER_SANITIZE_NUMBER_INT );
    3132
Note: See TracChangeset for help on using the changeset viewer.