Changeset 3107173
- Timestamp:
- 06/25/2024 07:36:34 AM (21 months ago)
- Location:
- instant-search
- Files:
-
- 12 added
- 5 edited
-
tags/1.0.5 (added)
-
tags/1.0.5/banner (added)
-
tags/1.0.5/banner/et-affiliate.png (added)
-
tags/1.0.5/banner/hosterion-affiliate.png (added)
-
tags/1.0.5/banner/index.php (added)
-
tags/1.0.5/banner/rey.png (added)
-
tags/1.0.5/instant-search.php (added)
-
tags/1.0.5/instant_search.css (added)
-
tags/1.0.5/instant_search.js (added)
-
tags/1.0.5/readme.txt (added)
-
tags/1.0.5/searchform.php (added)
-
tags/1.0.5/settings.css (added)
-
trunk/instant-search.php (modified) (3 diffs)
-
trunk/instant_search.css (modified) (2 diffs)
-
trunk/instant_search.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/searchform.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
instant-search/trunk/instant-search.php
r3105923 r3107173 9 9 * Plugin URI: https://instant-search.net 10 10 * Description: A WordPress search plugin with live and voice search. 11 * Version: 1.0. 411 * Version: 1.0.5 12 12 * Author: webmaster85 13 13 * Author URI: https://www.marincas.net … … 228 228 <h2>Width</h2> 229 229 <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. 231 231 </p> 232 232 <p class="width-text"> … … 263 263 </p> 264 264 <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> 266 266 </p> 267 267 </div> -
instant-search/trunk/instant_search.css
r3105923 r3107173 52 52 .search-overlay { 53 53 position: fixed; 54 top: 20%;54 top: 85px; 55 55 left: 0; 56 56 width: 100%; … … 111 111 112 112 .close { 113 color: #ffffff;114 113 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; 117 122 } 118 123 .close:hover, -
instant-search/trunk/instant_search.js
r3105923 r3107173 12 12 var debounceTimeout; 13 13 var currentRequest = null; 14 var delay = 10 0;14 var delay = 10; 15 15 $('#s').on('input', function() { 16 16 clearTimeout(debounceTimeout); -
instant-search/trunk/readme.txt
r3105923 r3107173 1 1 === Instant Search === 2 2 Contributors: webmaster85 3 Donate link: https://instant-search. marincas.net/#donate3 Donate link: https://instant-search.net/#donate 4 4 Tags: code, search plugin, ajax search, live search, woocommerce search 5 5 Requires at least: 4.7 6 6 Tested up to: 6.5.4 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 103 103 == Changelog == 104 104 105 = 1.0.5 = 106 107 Added improvements. 108 109 == Changelog == 110 105 111 = 1.0.4 = 106 112 -
instant-search/trunk/searchform.php
r3105923 r3107173 6 6 7 7 <form > 8 <div class="search-wrapper " style="width:100%;">8 <div class="search-wrapper2" style="width:100%;"> 9 9 <input type="text" value="" id="s2" placeholder="<?php echo esc_attr(get_option('instant_search_placeholder', 'What are we searching for today?')); ?>" /> 10 10 <button type="button" id="voice-search-btn2" aria-label="Voice Search"></button> … … 16 16 <div id="search-results" class="<?php echo esc_attr(get_option('instant_search_display_style', 'list')); ?>"></div> 17 17 <span class="close">×</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('/')); ?>"> 19 19 <div class="search-wrapper"> 20 20 <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.