Plugin Directory

Changeset 3267245


Ignore:
Timestamp:
04/05/2025 12:18:33 PM (11 months ago)
Author:
Arfa__
Message:

1.2.9

Fixed bug with sorting by price not working correctly on Search and Shop Listings blocks

Location:
fast-etsy-listings/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • fast-etsy-listings/trunk/blocks/search/search.js

    r3136772 r3267245  
    194194                  {label: __( 'Created most recent', 'fast-etsy-listings' ), value: 'CreatedDesc'},
    195195                  {label: __( 'Created earliest', 'fast-etsy-listings' ), value: 'CreatedAsc'},
    196                   {label: __( 'Highest Price', 'fast-etsy-listings' ), value: 'BidCountMost'},
    197                   {label: __( 'Lowest Price', 'fast-etsy-listings' ), value: 'PriceHighest'},
    198                   {label: __( 'Nearest First', 'fast-etsy-listings' ), value: 'PriceLowest'},
     196                  {label: __( 'Highest Price', 'fast-etsy-listings' ), value: 'PriceHighest'},
     197                  {label: __( 'Lowest Price', 'fast-etsy-listings' ), value: 'PriceLowest'},
    199198                  {label: __( 'Score', 'fast-etsy-listings' ), value: 'Score'},
    200199                  {label: __( 'Randomized', 'fast-etsy-listings' ), value: 'Random'}
  • fast-etsy-listings/trunk/blocks/shoplistings/shoplistings.js

    r3136772 r3267245  
    133133                    props.setAttributes( { featured: value } );
    134134                  },
    135                   help:  __( 'Show featured listings only', 'fast-etsy-listings' ),
     135                  help:  __( 'Show featured listings only. Overrides any search query.', 'fast-etsy-listings' ),
    136136                }
    137137              ),
     
    165165                  {label: __( 'Created most recent', 'fast-etsy-listings' ), value: 'CreatedDesc'},
    166166                  {label: __( 'Created earliest', 'fast-etsy-listings' ), value: 'CreatedAsc'},
    167                   {label: __( 'Highest Price', 'fast-etsy-listings' ), value: 'BidCountMost'},
    168                   {label: __( 'Lowest Price', 'fast-etsy-listings' ), value: 'PriceHighest'},
    169                   {label: __( 'Nearest First', 'fast-etsy-listings' ), value: 'PriceLowest'},
     167                  {label: __( 'Highest Price', 'fast-etsy-listings' ), value: 'PriceHighest'},
     168                  {label: __( 'Lowest Price', 'fast-etsy-listings' ), value: 'PriceLowest'},
    170169                  {label: __( 'Score', 'fast-etsy-listings' ), value: 'Score'},
    171170                  {label: __( 'Randomized', 'fast-etsy-listings' ), value: 'Random'}
  • fast-etsy-listings/trunk/changelog.txt

    r3260034 r3267245  
    11== Changelog ==
     2
     3= 1.2.9 =
     4Fixed bug with sorting by price not working correctly on Search and Shop Listings blocks
    25
    36= 1.2.8 =
  • fast-etsy-listings/trunk/constants.php

    r3260034 r3267245  
    55
    66define("FU_ETSY_PLUGIN_TITLE", "Fast Etsy Listings");
    7 define("FU_ETSY_PLUGIN_VER", "1.2.8");
     7define("FU_ETSY_PLUGIN_VER", "1.2.9");
    88define("FU_ETSY_PLUGIN_WEBSITE", "https://www.fubaby.com/wordpress-plugins/fast-etsy-listings/");
    99define("FU_ETSY_CALLCACHEEXPIRY", 360); // minutes (6 hrs)
     
    1111define("FU_ETSY_CALLCACHEEXPIRYFEEDBACK", 1440); // minutes (1 day)
    1212define("FU_ETSY_CATEGORYMAXDEPTH", 4);
    13 define("FU_ETSY_GOTOQUERYPARAM", "goto_etsy");
    1413define("FU_ETSY_COUNTRYQUERYPARAM", "etsy_country");
    1514
  • fast-etsy-listings/trunk/fast-etsy-listings.php

    r3260034 r3267245  
    44 * Plugin URI: http://www.fubaby.com/wordpress-plugins/fast-etsy-listings/
    55 * Description: Display Etsy Shop listings on your site, using blocks and shortcodes.
    6  * Version: 1.2.8
     6 * Version: 1.2.9
    77 * Requires at least: 5.0
    88 * Requires PHP: 7.4
  • fast-etsy-listings/trunk/readme.txt

    r3260034 r3267245  
    88Tested up to: 6.7
    99Requires PHP: 7.4
    10 Stable tag: 1.2.8
     10Stable tag: 1.2.9
    1111License: GPLv2 or later
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    153153== Changelog ==
    154154
     155= 1.2.9 =
     156Fixed bug with sorting by price not working correctly on Search and Shop Listings blocks
     157
    155158= 1.2.8 =
    156159Fixed bug in Rich Snippet structured data.
  • fast-etsy-listings/trunk/shortcode-lang-file.php

    r3144950 r3267245  
    4646    sellerToolTip: "' . esc_js( __( 'Name of Etsy shop to show Listings from. Leave blank for default from settings; \'all\' for all; \'author\' for post author', 'fast-etsy-listings' ) ) . '",
    4747    featuredDescLabel: "' . esc_js( __( 'Featured listings only', 'fast-etsy-listings' ) ) . '",
    48     featuredDescToolTip: "' . esc_js( __( 'Show featured listings only', 'fast-etsy-listings' ) ) . '",
     48    featuredDescToolTip: "' . esc_js( __( 'Show featured listings only. Overrides any search query.', 'fast-etsy-listings' ) ) . '",
    4949    sellerFeedbackToolTip: "' . esc_js( __( 'Etsy Shop to show reviews for', 'fast-etsy-listings' ) ) . '",
    5050    sortingLabel: "' . esc_js( __( 'Sorting', 'fast-etsy-listings' ) ) . '",
Note: See TracChangeset for help on using the changeset viewer.