Plugin Directory

Changeset 3107173


Ignore:
Timestamp:
06/25/2024 07:36:34 AM (21 months ago)
Author:
webmaster85
Message:

Improvements added.

Location:
instant-search
Files:
12 added
5 edited

Legend:

Unmodified
Added
Removed
  • instant-search/trunk/instant-search.php

    r3105923 r3107173  
    99 * Plugin URI: https://instant-search.net
    1010 * Description: A WordPress search plugin with live and voice search.
    11  * Version: 1.0.4
     11 * Version: 1.0.5
    1212 * Author: webmaster85
    1313 * Author URI: https://www.marincas.net
     
    228228        <h2>Width</h2>
    229229        <p>
    230           You can customize the width of the search form in this field. By default it's set to 300px, but you can change it to any CSS unit that suits your website's layout. For instance, you could use 50% for a responsive design, 300px for a fixed width, or 30vh to make it proportional to the viewport height.
     230          You can customize the width of the search form (the pop-up one) in this field. By default it's set to 300px, but you can change it to any CSS unit that suits your website's layout. For instance, you could use 50% for a responsive design, 300px for a fixed width, or 30vh to make it proportional to the viewport height.
    231231        </p>       
    232232        <p class="width-text">
     
    263263        </p>   
    264264            <p style="text-align:center;">
    265          <button class="donate-button" ><a href="https://instant-search.marincas.net/#donate" target="_blank">Donate here</a></button>
     265         <button class="donate-button" ><a href="https://instant-search.net/#donate" target="_blank">Donate here</a></button>
    266266            </p>
    267267      </div>
  • instant-search/trunk/instant_search.css

    r3105923 r3107173  
    5252.search-overlay {
    5353    position: fixed;
    54     top: 20%;
     54    top: 85px;
    5555    left: 0;
    5656    width: 100%;
     
    111111
    112112.close {
    113   color: #ffffff;
    114113  float: right;
    115   font-size: 50px;
    116   font-weight: bold;
     114    font-weight: bold;
     115    position: fixed;
     116    top: 40px;
     117    right: 0px;
     118    color: white;
     119    padding: 10px;
     120    font-size: 35px;
     121    cursor: pointer;
    117122}
    118123.close:hover,
  • instant-search/trunk/instant_search.js

    r3105923 r3107173  
    1212    var debounceTimeout;
    1313    var currentRequest = null;
    14     var delay = 100;
     14    var delay = 10;
    1515    $('#s').on('input', function() {
    1616        clearTimeout(debounceTimeout);
  • instant-search/trunk/readme.txt

    r3105923 r3107173  
    11=== Instant Search ===
    22Contributors: webmaster85
    3 Donate link: https://instant-search.marincas.net/#donate
     3Donate link: https://instant-search.net/#donate
    44Tags: code, search plugin, ajax search, live search, woocommerce search
    55Requires at least: 4.7
    66Tested up to: 6.5.4
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    103103== Changelog ==
    104104
     105= 1.0.5 =
     106
     107Added improvements.
     108
     109== Changelog ==
     110
    105111= 1.0.4 =
    106112
  • instant-search/trunk/searchform.php

    r3105923 r3107173  
    66       
    77<form >
    8     <div class="search-wrapper" style="width:100%;">
     8    <div class="search-wrapper2" style="width:100%;">
    99        <input type="text" value="" id="s2" placeholder="<?php echo esc_attr(get_option('instant_search_placeholder', 'What are we searching for today?')); ?>" />
    1010        <button type="button" id="voice-search-btn2" aria-label="Voice Search"></button>
     
    1616  <div id="search-results" class="<?php echo esc_attr(get_option('instant_search_display_style', 'list')); ?>"></div> 
    1717    <span class="close">&times;</span>   
    18    <form role="search" style="display:ruby-text;" method="get" id="searchform" action="<?php echo esc_url(home_url('/')); ?>">
     18 <form role="search" style="display:ruby-text;" method="get" id="searchform" action="<?php echo esc_url(home_url('/')); ?>">
    1919    <div class="search-wrapper">
    2020        <input type="text" value="" name="s" id="s" placeholder="<?php echo esc_attr(get_option('instant_search_placeholder', 'What are we searching for today?')); ?>" />
Note: See TracChangeset for help on using the changeset viewer.