CONFIRMED to work with 4.3.0 PRO
INSERT the following to the top of /skin1/customer/main/subcategories.tpl
Code:
{* BEGIN MOD to Redirect to Product Page when only One product in category *}
{if $products|@count eq 1}
{assign var="prodURL" value="`$http_location`/`$products.0.page_url`"}
{php}
header( "Location: " . $GLOBALS[smarty]->_tpl_vars[prodURL] );
{/php}
{/if}
{* END MOD to Redirect to Product Page when only One product in category *}