Forum for discussing general topics related to Couch.
2 posts Page 1 of 1
I have a question about search function, is that any chance that I can get partial text search?
Fulltext is not so ideal. And is that possible that I can search the text that less than 4 letters? because my product page got a product code with 2 letters "AC", I want the user able to search this code.

Another question is, is that possible to make 2 kinds of search layout within same search page? for example, show page title and link if it is a normal text page like about us, contact us. But if it is something like gallery, it will show image and link.
Hi,

Full-text search is the only kind of search we have, I'm afraid.

Regarding your other question
if you place a <cms:dump /> within the <cms:search> block, you'll find that *all* the data that you usually get using <cms:pages>, is made available here as well.

So, you can easily differentiate between various result items e.g. as follows -
Code: Select all
<cms:if k_template_name = 'gallery.php'>
   ... show image ..
<cms:if>

Hope it helps.
2 posts Page 1 of 1
cron