 | |  |
 | |  |
 |

Damon
Staff
/ Moderator

Sep 1, 2006, 1:51 PM
Post #2 of 3
(2384 views)
Shortcut
|
|
Re: [store182] Is this a bug? (Unwanted space on incomplete keyword)
[In reply to]
|
Can't Post
|
|
Hi, Thanks for the post. The good news is that this isn't a bug and I have a solution for you. :) I did some testing and I suspect that a space has been added after $word$ in the search_results.html template. When there is a space added I was getting the same search results you describe. Here is how the code should appear (without the spaces after $word$):
<!-- templatecell : must_words --><span style="font-weight: bold;">$word$</span><!-- /templatecell : must_words --> <!-- templatecell : may_words --><span style="font-weight: bold;">$word$</span><!-- /templatecell : may_words --> Give this a try and see if this resolves the issue. If you want me to take a look your template for you, email it to support@interactivetools.com (and reference this forum thread) and we can get it sorted out for you. :) Cheers Damon Edis interactivetools.com
|
|
|  |
 |

store182
User
Sep 2, 2006, 7:09 AM
Post #3 of 3
(2364 views)
Shortcut
|
Well, there was no immediate space after $word$, but I think there was one after the tags, because I just removed all the spaces in between the tags and comments and the problem was solved. BEFORE: <!-- templatecell : must_words --> <span class="c31b92"><font color="#ffffff">$word$</font></span> <!-- /templatecell : must_words --> <!-- templatecell : may_words --> <span class="c31b92">font color="#ffffff">$word$</font></span> <!-- /templatecell : may_words --></td> AFTER: <!-- templatecell : must_words --><span class="c31b92"><font color="#ffffff">$word$</font></span><!-- /templatecell : must_words --><!-- templatecell : may_words --><span class="c31b92"><font color="#ffffff">$word$</font></span><!-- /templatecell : may_words --> Thank you for pointing me in the right direction.
|
|
|  |
|