Ok, got this one done – plenty of CSS and the following in functions.php:
// Change Flexslider to use dots instead of thumbnails
add_filter( 'woocommerce_single_product_carousel_options', 'ud_update_woo_flexslider_options' );
function ud_update_woo_flexslider_options( $options ) {
$options['controlNav'] = true;
return $options;
}