Plugin Directory

Changeset 3368823


Ignore:
Timestamp:
09/27/2025 08:27:37 AM (3 months ago)
Author:
themefic
Message:

update toolkit 1.3.1

Location:
travelfic-toolkit
Files:
88 added
3 edited

Legend:

Unmodified
Added
Removed
  • travelfic-toolkit/trunk/inc/elementor-widgets/travelfic-hotels.php

    r3363276 r3368823  
    27302730                                                <!-- destination price -->
    27312731                                                <div class="tft-destination-price">
    2732                                                     <span class="tft-destination-price-title tft-color-text"><?php echo esc_html__('From USD', 'travelfic-toolkit'); ?></span>
     2732                                                    <span class="tft-destination-price-title tft-color-text">
     2733                                                        <?php
     2734                                                            if ( function_exists( 'wc_price' ) ) {
     2735                                                                $currency_code   = get_woocommerce_currency();
     2736                                                                echo sprintf( esc_html__( 'From %s', 'travelfic-toolkit' ), $currency_code );
     2737                                                            } else {
     2738                                                                echo esc_html__( 'From USD', 'travelfic-toolkit' );
     2739                                                            }
     2740                                                        ?>
     2741                                                    </span>
    27332742                                                    <span class="tft-destination-price-value tft-color-primary">
    2734                                                         <?php echo '$', $tf_total_price; ?>
     2743                                                        <?php if ( function_exists( 'wc_price' ) ) {
     2744                                                                echo wc_price( $tf_total_price );
     2745                                                            } else {
     2746                                                                echo '$' . number_format( $tf_total_price, 2 );
     2747                                                            }
     2748                                                        ?>
    27352749                                                    </span>
    27362750                                                </div>
  • travelfic-toolkit/trunk/readme.txt

    r3363276 r3368823  
    44Requires at least: 5.4
    55Tested up to: 6.8
    6 Stable tag: 1.3.0
     6Stable tag: 1.3.1
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    149149== Changelog ==
    150150
     151= 1.3.1 – September 27, 2025 =
     152
     153- Fixed: WooCommerce currency issue has been fixed.
     154
    151155= 1.3.0 – September 17, 2025 =
    152156
  • travelfic-toolkit/trunk/travelfic-toolkit.php

    r3363276 r3368823  
    55 * Description: A companion plugin to the Travelfic Theme with which you can easily build your own Hotel, Accommodation, Tour & Travel Booking website on WordPress.
    66 * Author: Themefic
    7  * Version: 1.3.0
     7 * Version: 1.3.1
    88 * Tested up to: 6.8
    99 * Text Domain: travelfic-toolkit
     
    2525define( 'TRAVELFIC_TOOLKIT_PATH', plugin_dir_path( __FILE__ ) );
    2626define( 'TRAVELFIC_TOOLKIT_ASSETS', TRAVELFIC_TOOLKIT_URL . 'assets/' );
    27 define( 'TRAVELFIC_TOOLKIT_VERSION', '1.3.0' );
     27define( 'TRAVELFIC_TOOLKIT_VERSION', '1.3.1' );
    2828
    2929/**
Note: See TracChangeset for help on using the changeset viewer.