Wordpress Help changing search plugin please

BurnedVader

Regular Member
Joined
Dec 30, 2017
Messages
306
Reaction score
80
Hi,

Can someone please help me. I want to change my search plugin on my website,
Right now its using theme plugin and i have installed the plugin but its still using the theme plugin.

I know i need to change something in editor can someone please help me out?

Kind regards
 
Hi,

Can someone please help me. I want to change my search plugin on my website,
Right now its using theme plugin and i have installed the plugin but its still using the theme plugin.

I know i need to change something in editor can someone please help me out?

Kind regards


Explain in more detail what you are looking to change on the search function? What does the new plugin supposed to do? Share some more details and I should be able to help you, if you share you website I would be able to assist even more but I can understand if you do not want to share it here in the open.
 
If you're only looking for a light aesthetic change, you can manually modify CSS or use a plugin for doing that. If you're looking to completely change the behaviors and features of the search, give us more details and I will try to suggest you the right plugin.
 
Explain in more detail what you are looking to change on the search function? What does the new plugin supposed to do? Share some more details and I should be able to help you, if you share you website I would be able to assist even more but I can understand if you do not want to share it here in the open.


I dont mind sharing my website. but I want to have my search go striaght to typing. click when you click on the search icon it should let you type striaght away. I dont know if that makes sense lol

website is oofyfashion.com
 
You need the add the autofocus feature on the input HTML element of the search bar. I found it from the browser but because you are using wordpress you need to find the HTML element and change it from there. Add a plugin called "String Locator" and search for the following HTML element
Code:
<input name="s" value="" class="aws-search-field" placeholder="Search" autocomplete="off" type="text">
when you find it and go to the file this line is located you need to change it to the following:
Code:
<input name="s" value="" class="aws-search-field" placeholder="Search" autocomplete="off" type="text" autofocus>

I hope this helps, if you are having issues you can create temporary login details and I can do it for you.
 
You need the add the autofocus feature on the input HTML element of the search bar. I found it from the browser but because you are using wordpress you need to find the HTML element and change it from there. Add a plugin called "String Locator" and search for the following HTML element
Code:
<input name="s" value="" class="aws-search-field" placeholder="Search" autocomplete="off" type="text">
when you find it and go to the file this line is located you need to change it to the following:
Code:
<input name="s" value="" class="aws-search-field" placeholder="Search" autocomplete="off" type="text" autofocus>

I hope this helps, if you are having issues you can create temporary login details and I can do it for you.


thanks i got it to work but then i messed up as the plugin i am using doesnt work properly with my theme lol so now i am trying to install a new theme instead :) thank you for the help :)
 
I am glad it worked, if you have any further issues let me know.
 
Back
Top