Changeset 3267245
- Timestamp:
- 04/05/2025 12:18:33 PM (11 months ago)
- Location:
- fast-etsy-listings/trunk
- Files:
-
- 7 edited
-
blocks/search/search.js (modified) (1 diff)
-
blocks/shoplistings/shoplistings.js (modified) (2 diffs)
-
changelog.txt (modified) (1 diff)
-
constants.php (modified) (2 diffs)
-
fast-etsy-listings.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
shortcode-lang-file.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fast-etsy-listings/trunk/blocks/search/search.js
r3136772 r3267245 194 194 {label: __( 'Created most recent', 'fast-etsy-listings' ), value: 'CreatedDesc'}, 195 195 {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'}, 199 198 {label: __( 'Score', 'fast-etsy-listings' ), value: 'Score'}, 200 199 {label: __( 'Randomized', 'fast-etsy-listings' ), value: 'Random'} -
fast-etsy-listings/trunk/blocks/shoplistings/shoplistings.js
r3136772 r3267245 133 133 props.setAttributes( { featured: value } ); 134 134 }, 135 help: __( 'Show featured listings only ', 'fast-etsy-listings' ),135 help: __( 'Show featured listings only. Overrides any search query.', 'fast-etsy-listings' ), 136 136 } 137 137 ), … … 165 165 {label: __( 'Created most recent', 'fast-etsy-listings' ), value: 'CreatedDesc'}, 166 166 {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'}, 170 169 {label: __( 'Score', 'fast-etsy-listings' ), value: 'Score'}, 171 170 {label: __( 'Randomized', 'fast-etsy-listings' ), value: 'Random'} -
fast-etsy-listings/trunk/changelog.txt
r3260034 r3267245 1 1 == Changelog == 2 3 = 1.2.9 = 4 Fixed bug with sorting by price not working correctly on Search and Shop Listings blocks 2 5 3 6 = 1.2.8 = -
fast-etsy-listings/trunk/constants.php
r3260034 r3267245 5 5 6 6 define("FU_ETSY_PLUGIN_TITLE", "Fast Etsy Listings"); 7 define("FU_ETSY_PLUGIN_VER", "1.2. 8");7 define("FU_ETSY_PLUGIN_VER", "1.2.9"); 8 8 define("FU_ETSY_PLUGIN_WEBSITE", "https://www.fubaby.com/wordpress-plugins/fast-etsy-listings/"); 9 9 define("FU_ETSY_CALLCACHEEXPIRY", 360); // minutes (6 hrs) … … 11 11 define("FU_ETSY_CALLCACHEEXPIRYFEEDBACK", 1440); // minutes (1 day) 12 12 define("FU_ETSY_CATEGORYMAXDEPTH", 4); 13 define("FU_ETSY_GOTOQUERYPARAM", "goto_etsy");14 13 define("FU_ETSY_COUNTRYQUERYPARAM", "etsy_country"); 15 14 -
fast-etsy-listings/trunk/fast-etsy-listings.php
r3260034 r3267245 4 4 * Plugin URI: http://www.fubaby.com/wordpress-plugins/fast-etsy-listings/ 5 5 * Description: Display Etsy Shop listings on your site, using blocks and shortcodes. 6 * Version: 1.2. 86 * Version: 1.2.9 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 7.4 -
fast-etsy-listings/trunk/readme.txt
r3260034 r3267245 8 8 Tested up to: 6.7 9 9 Requires PHP: 7.4 10 Stable tag: 1.2. 810 Stable tag: 1.2.9 11 11 License: GPLv2 or later 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 153 153 == Changelog == 154 154 155 = 1.2.9 = 156 Fixed bug with sorting by price not working correctly on Search and Shop Listings blocks 157 155 158 = 1.2.8 = 156 159 Fixed bug in Rich Snippet structured data. -
fast-etsy-listings/trunk/shortcode-lang-file.php
r3144950 r3267245 46 46 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' ) ) . '", 47 47 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' ) ) . '", 49 49 sellerFeedbackToolTip: "' . esc_js( __( 'Etsy Shop to show reviews for', 'fast-etsy-listings' ) ) . '", 50 50 sortingLabel: "' . esc_js( __( 'Sorting', 'fast-etsy-listings' ) ) . '",
Note: See TracChangeset
for help on using the changeset viewer.