Changeset 3374736
- Timestamp:
- 10/08/2025 01:58:53 AM (5 months ago)
- Location:
- speedy-search
- Files:
-
- 8 edited
- 1 copied
-
tags/1.5.2 (copied) (copied from speedy-search/trunk)
-
tags/1.5.2/includes/classes/Backend/Enqueue.php (modified) (1 diff)
-
tags/1.5.2/js/backend/orders.js (modified) (1 diff)
-
tags/1.5.2/readme.txt (modified) (2 diffs)
-
tags/1.5.2/speedy-search.php (modified) (1 diff)
-
trunk/includes/classes/Backend/Enqueue.php (modified) (1 diff)
-
trunk/js/backend/orders.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/speedy-search.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
speedy-search/tags/1.5.2/includes/classes/Backend/Enqueue.php
r3340038 r3374736 66 66 67 67 if ($hook_suffix === 'woocommerce_page_wc-orders') { 68 $this->enqueue_order_styles(); 69 $this->enqueue_order_scripts(); 68 $order_options = Utils::get_option('orders'); 69 $orders_enabled = isset($order_options['enabled']) ? $order_options['enabled'] : 0; 70 71 if ($orders_enabled) { 72 $this->enqueue_order_styles(); 73 $this->enqueue_order_scripts(); 74 } 70 75 } 71 76 } -
speedy-search/tags/1.5.2/js/backend/orders.js
r3340038 r3374736 21 21 function init() { 22 22 listener(); 23 close();24 23 } 25 24 -
speedy-search/tags/1.5.2/readme.txt
r3368758 r3374736 3 3 Tags: instant search, search, wp, snappy search, woocommerce 4 4 Tested up to: 6.8 5 Stable tag: 1.5. 15 Stable tag: 1.5.2 6 6 Requires PHP: 7.4 7 7 License: GPLv3 … … 101 101 == Changelog == 102 102 103 = 1.5.2 = 104 * Bugfix: WooCommerce orders admin will sometimes close if opened in new tab 105 * Bugfix: Searching orders will fail if orders were not indexed 106 103 107 = 1.5.1 = 104 108 * Added: Custom tokenizer for future use -
speedy-search/tags/1.5.2/speedy-search.php
r3368758 r3374736 4 4 * Plugin Name: Snappy Search 5 5 * Description: A fast, lightweight search plugin powered by TNTSearch, indexing posts for instant, accurate results. 6 * Version: 1.5. 16 * Version: 1.5.2 7 7 * Requires at least: 6.5 8 8 * Requires PHP: 7.4 -
speedy-search/trunk/includes/classes/Backend/Enqueue.php
r3340038 r3374736 66 66 67 67 if ($hook_suffix === 'woocommerce_page_wc-orders') { 68 $this->enqueue_order_styles(); 69 $this->enqueue_order_scripts(); 68 $order_options = Utils::get_option('orders'); 69 $orders_enabled = isset($order_options['enabled']) ? $order_options['enabled'] : 0; 70 71 if ($orders_enabled) { 72 $this->enqueue_order_styles(); 73 $this->enqueue_order_scripts(); 74 } 70 75 } 71 76 } -
speedy-search/trunk/js/backend/orders.js
r3340038 r3374736 21 21 function init() { 22 22 listener(); 23 close();24 23 } 25 24 -
speedy-search/trunk/readme.txt
r3368758 r3374736 3 3 Tags: instant search, search, wp, snappy search, woocommerce 4 4 Tested up to: 6.8 5 Stable tag: 1.5. 15 Stable tag: 1.5.2 6 6 Requires PHP: 7.4 7 7 License: GPLv3 … … 101 101 == Changelog == 102 102 103 = 1.5.2 = 104 * Bugfix: WooCommerce orders admin will sometimes close if opened in new tab 105 * Bugfix: Searching orders will fail if orders were not indexed 106 103 107 = 1.5.1 = 104 108 * Added: Custom tokenizer for future use -
speedy-search/trunk/speedy-search.php
r3368758 r3374736 4 4 * Plugin Name: Snappy Search 5 5 * Description: A fast, lightweight search plugin powered by TNTSearch, indexing posts for instant, accurate results. 6 * Version: 1.5. 16 * Version: 1.5.2 7 7 * Requires at least: 6.5 8 8 * Requires PHP: 7.4
Note: See TracChangeset
for help on using the changeset viewer.