Searching for a product in the serach box then hitting enter to get the advanced search page results brings up an empty page. Ihave looked in blocks and search block is there, disabled and re enables / synced searchanise but nothing.
Any one have any ideas.
www.hivis.co.uk/v3 (updating)
Thanks
John
That's all handled by the 'Main Content' controller.
Looks like /skins/basic/customer/views/products/search.tpl is empty or is incorrectly being taken over by an override hook.
My source code appears the same as yours if I empty the search.tpl file.
/skins/basic/customer/views/products/search.tpl in 3.0.4:
```php
{if $search}
{assign var="_title" value=$lang.search_results}
{assign var="_collapse" value=true}
{else}
{assign var="_title" value=$lang.advanced_search}
{assign var="_collapse" value=false}
{/if}
{include file="views/products/components/products_search_form.tpl" dispatch="products.search" collapse=$_collapse}
{if $search}
{if $products}
{assign var="title_extra" value="`$lang.products_found`: `$product_count`"}
{assign var="layouts" value=""|fn_get_products_views:false:0}
{if $category_data.product_columns}
{assign var="product_columns" value=$category_data.product_columns}
{else}
{assign var="product_columns" value=$settings.Appearance.columns_in_products_list}
{/if}
{if $layouts.$selected_layout.template}
{include file="`$layouts.$selected_layout.template`" columns=`$product_columns`}
{/if}
{else}
{hook name="products:search_results_no_matching_found"}
{$lang.text_no_matching_products_found}
{/hook}
{/if}
{/if}
{hook name="products:search_results_mainbox_title"}
{capture name="mainbox_title"}{$title_extra}{$_title}{/capture}
{/hook}
```