Plugin Directory

Changeset 3374736


Ignore:
Timestamp:
10/08/2025 01:58:53 AM (5 months ago)
Author:
polyplugins
Message:

Update to version 1.5.2 from GitHub

Location:
speedy-search
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • speedy-search/tags/1.5.2/includes/classes/Backend/Enqueue.php

    r3340038 r3374736  
    6666
    6767    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      }
    7075    }
    7176  }
  • speedy-search/tags/1.5.2/js/backend/orders.js

    r3340038 r3374736  
    2121  function init() {
    2222    listener();
    23     close();
    2423  }
    2524
  • speedy-search/tags/1.5.2/readme.txt

    r3368758 r3374736  
    33Tags: instant search, search, wp, snappy search, woocommerce
    44Tested up to: 6.8
    5 Stable tag: 1.5.1
     5Stable tag: 1.5.2
    66Requires PHP: 7.4
    77License: GPLv3
     
    101101== Changelog ==
    102102
     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
    103107= 1.5.1 =
    104108* Added: Custom tokenizer for future use
  • speedy-search/tags/1.5.2/speedy-search.php

    r3368758 r3374736  
    44 * Plugin Name: Snappy Search
    55 * Description: A fast, lightweight search plugin powered by TNTSearch, indexing posts for instant, accurate results.
    6  * Version: 1.5.1
     6 * Version: 1.5.2
    77 * Requires at least: 6.5
    88 * Requires PHP: 7.4
  • speedy-search/trunk/includes/classes/Backend/Enqueue.php

    r3340038 r3374736  
    6666
    6767    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      }
    7075    }
    7176  }
  • speedy-search/trunk/js/backend/orders.js

    r3340038 r3374736  
    2121  function init() {
    2222    listener();
    23     close();
    2423  }
    2524
  • speedy-search/trunk/readme.txt

    r3368758 r3374736  
    33Tags: instant search, search, wp, snappy search, woocommerce
    44Tested up to: 6.8
    5 Stable tag: 1.5.1
     5Stable tag: 1.5.2
    66Requires PHP: 7.4
    77License: GPLv3
     
    101101== Changelog ==
    102102
     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
    103107= 1.5.1 =
    104108* Added: Custom tokenizer for future use
  • speedy-search/trunk/speedy-search.php

    r3368758 r3374736  
    44 * Plugin Name: Snappy Search
    55 * Description: A fast, lightweight search plugin powered by TNTSearch, indexing posts for instant, accurate results.
    6  * Version: 1.5.1
     6 * Version: 1.5.2
    77 * Requires at least: 6.5
    88 * Requires PHP: 7.4
Note: See TracChangeset for help on using the changeset viewer.