Hi.
I am new to CouchCMS.
I have read through the documentation but I am a bit stuck in regards to displaying the search results on search.php.
Currently it displays only page titles and not text terms used within editable text areas within the page.
EG, on the about page i have an editable region with a paragraph of "Lorem Ipsum", when i search for "lorem" nothing displays within the search results.
Like I said, I am new to this and cannot find any information regarding the issue im having.
my code on the search.php page is:
Thanks
I am new to CouchCMS.
I have read through the documentation but I am a bit stuck in regards to displaying the search results on search.php.
Currently it displays only page titles and not text terms used within editable text areas within the page.
EG, on the about page i have an editable region with a paragraph of "Lorem Ipsum", when i search for "lorem" nothing displays within the search results.
Like I said, I am new to this and cannot find any information regarding the issue im having.
my code on the search.php page is:
- Code: Select all
<cms:search limit='10'>
<cms:if k_paginated_top >
<div>
<cms:if k_paginator_required >
Page <cms:show k_current_page /> of <cms:show k_total_pages /><br>
</cms:if>
<cms:show k_total_records /> Pages Found -
displaying: <cms:show k_record_from />-<cms:show k_record_to />
</div>
</cms:if>
<h3><a href="<cms:show k_page_link/>"><cms:show k_search_title /></a></h3>
<cms:show k_search_content />
<hr>
<cms:paginator />
</cms:search>
Thanks