Changeset 3284130
- Timestamp:
- 04/29/2025 01:18:50 PM (11 months ago)
- Location:
- fast-fuzzy-search/trunk
- Files:
-
- 2 edited
-
fast-fuzzy-search.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fast-fuzzy-search/trunk/fast-fuzzy-search.php
r3277206 r3284130 4 4 * Plugin URI: https://redoxbird.com/product/fast-fuzzy-search 5 5 * Description: A blazing fast and lightweight search engine plugin for your WordPress site. 6 * Version: 1.1. 46 * Version: 1.1.5 7 7 * Author: RedOxbird 8 8 * Author URI: https://redoxbird.com … … 19 19 require_once plugin_dir_path(__FILE__) . 'includes/settings-framework.php'; 20 20 21 define('FAST_FUZZY_SEARCH_VERSION', '1.1. 4');21 define('FAST_FUZZY_SEARCH_VERSION', '1.1.5'); 22 22 define('FAST_FUZZY_SEARCH_JOIN_SYMBOL', ' / '); 23 23 define('FAST_FUZZY_SEARCH_CACHE_DIR', WP_CONTENT_DIR . '/cache/fast-fuzzy-search/'); … … 72 72 add_action('admin_notices', function() { 73 73 // Check if both the free and pro plugin files exist (installed) 74 $free_plugin_path = FAST_FUZZY_SEARCH_PLUGIN_FILE;74 $free_plugin_path = dirname( FAST_FUZZY_SEARCH_PLUGIN_DIR ) . '/fast-fuzzy-search/fast-fuzzy-search.php'; 75 75 $pro_plugin_path = dirname( FAST_FUZZY_SEARCH_PLUGIN_DIR ) . '/fast-fuzzy-search-pro/fast-fuzzy-search.php'; 76 76 … … 254 254 'primary_color' => '#2271b1', 255 255 'mode' => 'auto', 256 'type' => 'i nput-field',256 'type' => 'icon-button', 257 257 'hide_on_scroll' => false, 258 258 ]; -
fast-fuzzy-search/trunk/readme.txt
r3277206 r3284130 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 48 Stable tag: 1.1.5 9 9 License: GPLv3 or later 10 10 License URI: [https://www.gnu.org/licenses/gpl-3.0.html](https://www.gnu.org/licenses/gpl-3.0.html)
Note: See TracChangeset
for help on using the changeset viewer.