Hi!
It might be a bug within the code. I will check on that, I perhaps made a mistake.
I’ll be thankfull for it.
I think I might have found the cause. I’m not sure that’s the case, but if you want, you can try to fix it yourself – it’s only one line of code:
Open up the wp-content/plugins/ajax-search-lite/includes/search_content.class.php file and scroll to line 501, where you should see this:
$_content = apply_filters( 'the_content', $r->content );
change that line to:
$_content = apply_filters( 'the_content', $_content );
I think this is going to solve the problem.
I will upload later a bugfix version, but first I investigate other bugs as well so everything is fixed at once.
There are two replace places with this code in this file.
After replacing both of them – IT WORKS. Thanks for help.