I have tried the code below with no success. The code below i added to wc-functions.php.
Can anyone please give advise? Regards Michael
- Code: Select all
// redirect
add_action('category_template', 'use_single_for_one_category');
function use_single_for_one_category($template = '') {
global $wp_query;
if ( 1 === (int) $wp_query->post_count ) {
$template = get_single_template();
}
return $template;
}
I have also tried some of the code here : http://wordpress.org/support/topic/wooc ... oduct-page