2013-07-30, 03:28:19
What do you mean by the summary page? The page that displays the results? You can customize it using conditionals:
Or create a separate template file for it and select that template when editing the page's options. I assume that there isn't a 'summary page template' because the nature of i18n search is that it can be called on any page; so depending on the type of special page that you want, there may be any number of 'summary' pages (or even none).
(Unless I've misunderstood?)
PHP Code:
if (return_page_slug() == 'summaryPageSlug') {
// custom output
}
Or create a separate template file for it and select that template when editing the page's options. I assume that there isn't a 'summary page template' because the nature of i18n search is that it can be called on any page; so depending on the type of special page that you want, there may be any number of 'summary' pages (or even none).
(Unless I've misunderstood?)