Plugin Directory

Changeset 3444659


Ignore:
Timestamp:
01/22/2026 09:38:46 AM (2 months ago)
Author:
vinod dalvi
Message:

Plugin version 5.5.14

Location:
add-search-to-menu
Files:
302 added
7 edited

Legend:

Unmodified
Added
Removed
  • add-search-to-menu/trunk/add-search-to-menu.php

    r3417097 r3444659  
    55 * Plugin URI:  https://ivorysearch.com
    66 * Description: The WordPress Search plugin that provides Search Form Customizer, WooCommerce Search, Image Search, Search Shortcode, AJAX Search & Live Search support!
    7  * Version:     5.5.13
     7 * Version:     5.5.14
    88 * Author:      Ivory Search
    99 * Author URI:  https://ivorysearch.com/
     
    7171    public function define_constants() {
    7272        if ( !defined( 'IS_VERSION' ) ) {
    73             define( 'IS_VERSION', '5.5.13' );
     73            define( 'IS_VERSION', '5.5.14' );
    7474        }
    7575        if ( !defined( 'IS_PLUGIN_FILE' ) ) {
  • add-search-to-menu/trunk/admin/class-is-editor.php

    r3296451 r3444659  
    24852485        $index_opt = IS_Index_Options::getInstance();
    24862486        if ( IS_Index_Model::is_index_empty() ) {
    2487             $conflicts['index'] = esc_html__( 'The Index should be created to use this option in the Index ' ) . $index_opt->get_index_settings_link();
     2487            $conflicts['index'] = esc_html__( 'The Index should be created to use this option in the Index ', 'add-search-to-menu' ) . $index_opt->get_index_settings_link();
    24882488        }
    24892489        $props = $this->search_form->get_properties();
  • add-search-to-menu/trunk/admin/partials/settings-form.php

    r3417097 r3444659  
    112112                                <div id="publishing-action">
    113113                                    <span class="spinner"></span>
    114                                     <?php submit_button( 'Save', 'primary', 'ivory_search_options_submit', false ); ?>
     114                                    <?php submit_button( __('Save', 'add-search-to-menu'), 'primary', 'ivory_search_options_submit', false ); ?>
    115115                                    <?php if( 'index' == $tab ): ?>
    116116                                        <?php
  • add-search-to-menu/trunk/languages/add-search-to-menu.pot

    r3417097 r3444659  
    33msgstr ""
    44"Project-Id-Version: Ivory Search\n"
    5 "POT-Creation-Date: 2025-12-11 13:23+0530\n"
     5"POT-Creation-Date: 2026-01-22 14:55+0530\n"
    66"PO-Revision-Date: 2020-03-17 21:05+0530\n"
    77"Last-Translator: \n"
     
    17091709
    17101710#: ../admin/partials/search-form.php:198
     1711#: ../admin/partials/settings-form.php:114
    17111712msgid "Save"
    17121713msgstr ""
  • add-search-to-menu/trunk/public/class-is-public.php

    r3296451 r3444659  
    202202            $temp = '';
    203203            if ( isset( $this->opt['menu_gcse'] ) && '' != $this->opt['menu_gcse'] ) {
    204                 $temp .= '<li class="gsc-cse-search-menu">' . $this->opt['menu_gcse'] . '</li>';
     204                $temp .= '<li class="gsc-cse-search-menu">' . wp_kses_post( $this->opt['menu_gcse'] ) . '</li>';
    205205            } else {
    206206                $search_class = ( isset( $this->opt['menu_classes'] ) ? $this->opt['menu_classes'] . ' astm-search-menu is-menu ' : ' astm-search-menu is-menu ' );
     
    247247        $items = '';
    248248        if ( isset( $this->opt['menu_gcse'] ) && $this->opt['menu_gcse'] != '' ) {
    249             $items .= '<div class="astm-search-menu-wrapper is-menu-wrapper"><div class="gsc-cse-search-menu">' . $this->opt['menu_gcse'] . '</div></div>';
     249            $items .= '<div class="astm-search-menu-wrapper is-menu-wrapper"><div class="gsc-cse-search-menu">' . wp_kses_post( $this->opt['menu_gcse'] ) . '</div></div>';
    250250        } else {
    251251            $search_class = ( isset( $this->opt['menu_classes'] ) ? $this->opt['menu_classes'] . ' astm-search-menu is-menu ' : ' astm-search-menu is-menu ' );
  • add-search-to-menu/trunk/public/partials/is-ajax-results.php

    r3296451 r3444659  
    146146        ?>
    147147        <div class="is-ajax-search-no-result">
    148             <?php echo html_entity_decode( $field['nothing_found_text'] ); ?>
     148            <?php echo wp_kses_post( $field['nothing_found_text'] ); ?>
    149149        </div>
    150150        <?php
  • add-search-to-menu/trunk/readme.txt

    r3417097 r3444659  
    66Tested up to: 6.9
    77Requires PHP: 5.2.4
    8 Stable tag: 5.5.13
     8Stable tag: 5.5.14
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    198198== Changelog ==
    199199
     200= 5.5.14 =
     201* Improved - Plugin translation
     202
    200203= 5.5.13 =
    201204* Updated - Freemius SDK 2.13.0
Note: See TracChangeset for help on using the changeset viewer.