You could edit the file:
/includes/modules/pages/advanced_search_results/header_php.php
and add the code in RED so when ever there is only 1 Product found it goes to the product_info page ...
Code:
$breadcrumb->add(NAVBAR_TITLE_2);
// bof: if only 1 search result skip listing and go to product_info
$chk_count = $db->Execute($listing_sql);
if ($chk_count->RecordCount() == 1) {
zen_redirect(zen_href_link(zen_get_info_page($chk_count->fields['products_id']), 'cPath=' . zen_get_generated_category_path_rev($chk_count->fields['master_categories_id']) . '&products_id=' . $chk_count->fields['products_id']));
}
// eof: if only 1 search result skip listing and go to product_info
$result = new splitPageResults($listing_sql, MAX_DISPLAY_PRODUCTS_LISTING, 'p.products_id', 'page');
Bookmarks