Plugin Directory

Changeset 3034675


Ignore:
Timestamp:
02/12/2024 03:16:59 PM (2 years ago)
Author:
webdevstudios
Message:

release version 2.7.1

Location:
wp-search-with-algolia
Files:
1232 added
2 deleted
3 edited

Legend:

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

    r3004006 r3034675  
    33Tags: search, algolia, autocomplete, instantsearch, relevance search, faceted search, find-as-you-type search, ecommerce, seo, woocommerce, advanced search
    44Requires at least: 5.0
    5 Tested up to: 6.4.1
     5Tested up to: 6.4.3
    66Requires PHP: 7.4
    7 Stable tag: 2.7.0
     7Stable tag: 2.7.1
    88License: GNU General Public License v2.0, MIT License
    99
     
    127127
    128128Follow along with the changelog on [Github](https://github.com/WebDevStudios/wp-search-with-algolia/releases).
     129
     130= 2.7.1 =
     131* Fixed: Instantsearch.php template file. "Powered By Algolia" Instantsearch widget wrapped in a check for if the "Remove powered by" option is checked. This should match already working behavior with Autocomplete dropdown.
    129132
    130133= 2.7.0 =
  • wp-search-with-algolia/trunk/algolia.php

    r3004006 r3034675  
    44 * Plugin URI:        https://github.com/WebDevStudios/wp-search-with-algolia
    55 * Description:       Integrate the powerful Algolia search service with WordPress
    6  * Version:           2.7.0
     6 * Version:           2.7.1
    77 * Requires at least: 5.0
    88 * Requires PHP:      7.4
     
    2727
    2828// The Algolia Search plugin version.
    29 define( 'ALGOLIA_VERSION', '2.7.0' );
     29define( 'ALGOLIA_VERSION', '2.7.1' );
    3030
    3131// The minmum required PHP version.
  • wp-search-with-algolia/trunk/templates/instantsearch.php

    r2920356 r3034675  
    66 * @since   1.0.0
    77 *
    8  * @version 2.5.2
     8 * @version 2.7.1
    99 * @package WebDevStudios\WPSWA
    1010 */
     
    192192                        limit: 10,
    193193                    }),
    194 
    195                     /* Search powered-by widget */
    196                     instantsearch.widgets.poweredBy({
    197                         container: '#algolia-powered-by'
    198                     })
    199194                ]);
     195
     196                if ( algolia.powered_by_enabled ) {
     197                    search.addWidget(
     198                        /* Search powered-by widget */
     199                        instantsearch.widgets.poweredBy({
     200                            container: '#algolia-powered-by'
     201                        }),
     202                    )
     203                }
    200204
    201205                /* Start */
Note: See TracChangeset for help on using the changeset viewer.