Hi i am trying to install ajaxy on my wordpress website, but i couldnt see any information about ho to insert it into template. If i change the searchforma.php file, then there appears a warning on my template. can yopu help me please? thanks for this useful plugin.
What warning do u get?, you have to rename searchform.php to searchforma.php or else the theme search form will be used instead, the plugin hacks wordpress default search form, u can use < ?php get_search_form(); ?> to get the form, or else most of the time it only needs activation
Hi,
Successfully installed your search form and I love it! Thank you so much. However, I’d like to change the colour of highlights, so to say to get rid of fb feel to it. Any ideas?
edit the file style.css under wp-content/plugins/ajaxy-search-form.
if u know some about css, u can edit the file directly else u can send me ur modifications and i will send u a modified css with the colors that u want
Great! It works now, but last thing, it shows only words (for tags) , is it possible by any chance to show the thumbnail of the post that has that tag in it? (right now it shows just words for the tags only).
That`s what I thought too. Wow This is great. I`ll check it now and I`ll let you know
It worked. Thanks. One more thing though, I`m not sure if it searches by tags. It searches by the text I have inside the post. Is there a way that it can read the tags too?
currently it searches categories only, i will add that in v2
if u really need it, u have to edit sf.php on line 220 and replace this $wpdb->term_taxonomy.taxonomy=’category’ with ($wpdb->term_taxonomy.taxonomy=’category’ || $wpdb->term_taxonomy.taxonomy=’post_tag’)
The whole line 220 is : $results = $wpdb->get_results($wpdb->prepare(“select $wpdb->terms.term_id from $wpdb->terms, $wpdb->term_taxonomy where name like ‘%%%s%%’ and ($wpdb->term_taxonomy.taxonomy=’category’ || $wpdb->term_taxonomy.taxonomy=’post_tag’) and $wpdb->term_taxonomy.term_id = $wpdb->terms.term_id limit 0, “.$setting->limit, $name));
This was with parenthesis.
Now this is without the parenthesis (I tried both) and none worked. It still searches only by the name. (not by tags)
$results = $wpdb->get_results($wpdb->prepare(“select $wpdb->terms.term_id from $wpdb->terms, $wpdb->term_taxonomy where name like ‘%%%s%%’ and $wpdb->term_taxonomy.taxonomy=’category’ || $wpdb->term_taxonomy.taxonomy=’post_tag’ and $wpdb->term_taxonomy.term_id = $wpdb->terms.term_id limit 0, “.$setting->limit, $name));
ah sorry, my fault it should be “or” instead of “||”
so the line becomes
$results = $wpdb->get_results($wpdb->prepare(“select $wpdb->terms.term_id from $wpdb->terms, $wpdb->term_taxonomy where name like ‘%%%s%%’ and ($wpdb->term_taxonomy.taxonomy=’category’ or $wpdb->term_taxonomy.taxonomy=’post_tag’) and $wpdb->term_taxonomy.term_id = $wpdb->terms.term_id limit 0, “.$setting->limit, $name));
This code if I paste it it gives me an error on line 220. It won`t work at all. So instead, I changed the || to “or” . It eliminated that error but it still won`t still search by tags. It`s the same.
i have uploaded a new version with support of searching post tags and custom taxonomies, u can update your plugin to version 1.0.4
cheers, don’t forget to donate
Any chance of eliminating a particular page from the search?
Great! It works now, but last thing, it shows only words (for tags) , is it possible by any chance to show the thumbnail of the post that has that tag in it?
For example, right now I have 5 different posts (with different images) but having the same tag, and if I type in that tag , it shows 5 tags with the same name but no image.. and it`s confusing. Thanks!
i removed the same post_tag appearance, update your plugin for version 1.0.5.
currently it is not possible to show a thumbnail for post tags and even if it is a feature, you will get a large performance penalty on this kind of selection, because i will have to loop through all the posts inside this tag, get the first featured image and return it
if i suppose u have 10 post in a tag and there are 3 matched tags, the estimated execution time will exceed 30 sec before returning the result, which will make the user click somewhere else before looking at the search
When I active the plugin in google chrome browser the right scroll side is full black but in internet explorer browser is ok. But it is crazy bacause if I take a screenshot the scroll side is normal in google chrome and internet explorer.
Hi i am trying to install ajaxy on my wordpress website, but i couldnt see any information about ho to insert it into template. If i change the searchforma.php file, then there appears a warning on my template. can yopu help me please? thanks for this useful plugin.
Alper,
What warning do u get?, you have to rename searchform.php to searchforma.php or else the theme search form will be used instead, the plugin hacks wordpress default search form, u can use < ?php get_search_form(); ?> to get the form, or else most of the time it only needs activation
Hi,
Successfully installed your search form and I love it! Thank you so much. However, I’d like to change the colour of highlights, so to say to get rid of fb feel to it. Any ideas?
Greatly Appreciated!
edit the file style.css under wp-content/plugins/ajaxy-search-form.
if u know some about css, u can edit the file directly else u can send me ur modifications and i will send u a modified css with the colors that u want
cheers
great, thanks, found the way!
Great! It works now, but last thing, it shows only words (for tags) , is it possible by any chance to show the thumbnail of the post that has that tag in it? (right now it shows just words for the tags only).
Big thanks!
Opps sorry I replied to the wrong post
)
Hello, I installed this search. It`s great but there is one problem. I don`t see the text when I type in , and the flickering dash either.
adjust the width from under setting->ajaxy search form, if it doesn’t work then send me your blog address and i will check it out
cheers
Wow that was fast. I did adjust it and it’s the same. The website is http://www.eutopica.com .
Thanks!
Just uploaded a new version 1.0.3, it have the css fix for your website,
your website is have “color:white” as the main color which will not make u see the text unless u highlight it
that’s fixed, please update and check, tell me when its done
cheers
That`s what I thought too. Wow This is great. I`ll check it now and I`ll let you know
It worked. Thanks. One more thing though, I`m not sure if it searches by tags. It searches by the text I have inside the post. Is there a way that it can read the tags too?
currently it searches categories only, i will add that in v2
if u really need it, u have to edit sf.php on line 220 and replace this $wpdb->term_taxonomy.taxonomy=’category’ with ($wpdb->term_taxonomy.taxonomy=’category’ || $wpdb->term_taxonomy.taxonomy=’post_tag’)
this will search both categories and post_tags
I changed that code and it won`t work!!! If this will work I will def consider donating for this plugin.! I love it so far
copy the whole line and paste it here
The whole line 220 is : $results = $wpdb->get_results($wpdb->prepare(“select $wpdb->terms.term_id from $wpdb->terms, $wpdb->term_taxonomy where name like ‘%%%s%%’ and ($wpdb->term_taxonomy.taxonomy=’category’ || $wpdb->term_taxonomy.taxonomy=’post_tag’) and $wpdb->term_taxonomy.term_id = $wpdb->terms.term_id limit 0, “.$setting->limit, $name));
This was with parenthesis.
Now this is without the parenthesis (I tried both) and none worked. It still searches only by the name. (not by tags)
$results = $wpdb->get_results($wpdb->prepare(“select $wpdb->terms.term_id from $wpdb->terms, $wpdb->term_taxonomy where name like ‘%%%s%%’ and $wpdb->term_taxonomy.taxonomy=’category’ || $wpdb->term_taxonomy.taxonomy=’post_tag’ and $wpdb->term_taxonomy.term_id = $wpdb->terms.term_id limit 0, “.$setting->limit, $name));
ah sorry, my fault it should be “or” instead of “||”
so the line becomes
$results = $wpdb->get_results($wpdb->prepare(“select $wpdb->terms.term_id from $wpdb->terms, $wpdb->term_taxonomy where name like ‘%%%s%%’ and ($wpdb->term_taxonomy.taxonomy=’category’ or $wpdb->term_taxonomy.taxonomy=’post_tag’) and $wpdb->term_taxonomy.term_id = $wpdb->terms.term_id limit 0, “.$setting->limit, $name));
This code if I paste it it gives me an error on line 220. It won`t work at all. So instead, I changed the || to “or” . It eliminated that error but it still won`t still search by tags. It`s the same.
i have uploaded a new version with support of searching post tags and custom taxonomies, u can update your plugin to version 1.0.4
cheers, don’t forget to donate
Any chance of eliminating a particular page from the search?
Thanks
the plugin shows all posts that are published, if the post is private it will not be shown in the search box
Great! It works now, but last thing, it shows only words (for tags) , is it possible by any chance to show the thumbnail of the post that has that tag in it?
Big thanks!
For example, right now I have 5 different posts (with different images) but having the same tag, and if I type in that tag , it shows 5 tags with the same name but no image.. and it`s confusing.
Thanks!
i removed the same post_tag appearance, update your plugin for version 1.0.5.
currently it is not possible to show a thumbnail for post tags and even if it is a feature, you will get a large performance penalty on this kind of selection, because i will have to loop through all the posts inside this tag, get the first featured image and return it
if i suppose u have 10 post in a tag and there are 3 matched tags, the estimated execution time will exceed 30 sec before returning the result, which will make the user click somewhere else before looking at the search
this plugin major step was performance
cheers
Excellent plugin, i am so much happy with this search, i have given you a 5 star rating.
When I active the plugin in google chrome browser the right scroll side is full black but in internet explorer browser is ok. But it is crazy bacause if I take a screenshot the scroll side is normal in google chrome and internet explorer.
Hello. Thanks for the great Plugin. I have a few questions. Hope you can help me.
- Is it possible to delete the Text “Suche nach” over the Searchfield?
- Is it possible to change the width of the Resultbox/Searchbox?
Thanks a lot.
Sorry for Double Post but it is possible to exclude the categorys from Searchresults?
Thanks
Mathias
Sorry. I have found the Options. But i miss one Option to set.
When i visit over http://www.wuepics.de my blog, the old Searchformbox is visible.
Then, when i click on a Post or something, your Searchformbox is activ.
How can i change this?
Thanks a lot.