Plugin Directory

Changeset 3317213


Ignore:
Timestamp:
06/24/2025 08:43:43 PM (6 months ago)
Author:
webdevstudios
Message:

release version 2.10.1

Location:
wp-search-with-algolia
Files:
1299 added
4 edited

Legend:

Unmodified
Added
Removed
  • wp-search-with-algolia/trunk/README.txt

    r3312717 r3317213  
    55Tested up to: 6.8.1
    66Requires PHP: 7.4
    7 Stable tag: 2.10.0
     7Stable tag: 2.10.1
    88License: GNU General Public License v2.0, MIT License
    99
     
    128128
    129129Follow along with the changelog on [Github](https://github.com/WebDevStudios/wp-search-with-algolia/releases).
     130
     131= 2.10.1 =
     132* Fixed: Issues around admin notifications on the Autocomplete settings page, introduced in 2.10.0
    130133
    131134= 2.10.0 =
  • wp-search-with-algolia/trunk/algolia.php

    r3312717 r3317213  
    44 * Plugin URI:        https://github.com/WebDevStudios/wp-search-with-algolia
    55 * Description:       Integrate the powerful Algolia search service with WordPress
    6  * Version:           2.10.0
     6 * Version:           2.10.1
    77 * Requires at least: 5.3
    88 * Requires PHP:      7.4
     
    2727
    2828// The Algolia Search plugin version.
    29 define( 'ALGOLIA_VERSION', '2.10.0' );
     29define( 'ALGOLIA_VERSION', '2.10.1' );
    3030
    3131// The minmum required PHP version.
  • wp-search-with-algolia/trunk/includes/indices/class-algolia-index.php

    r3312717 r3317213  
    734734     */
    735735    public function get_default_autocomplete_config() {
    736         $plugin_settings = new \Algolia_Settings();
    737         $debounce        = $plugin_settings->get_autocomplete_debounce();
     736        $plugin   = Algolia_Plugin_Factory::create();
     737        $debounce = $plugin->get_settings()->get_autocomplete_debounce();
    738738
    739739        return array(
  • wp-search-with-algolia/trunk/templates/instantsearch-modern.php

    r3312717 r3317213  
    5151            if ( document.getElementById("algolia-search-box") ) {
    5252                if ( algolia.indices.searchable_posts === undefined && document.getElementsByClassName("admin-bar").length > 0 ) {
    53                     alert('<?php esc_html_e( "It looks like you have not indexed the searchable posts index. Please head to the Indexing page of the Algolia Search plugin and index it.", 'wp-search-with-algolia' ); ?>');
     53                    alert('<?php esc_html_e( 'It looks like you have not indexed the searchable posts index. Please head to the Indexing page of the Algolia Search plugin and index it.', 'wp-search-with-algolia' ); ?>');
    5454                }
    5555
Note: See TracChangeset for help on using the changeset viewer.