So a certain wonderful person has helped me resolve this. The following code needs adding to your themes function.php file.
add_filter('woocommerce_variable_price_html',
'custom_variation_price', 10, 2);
function custom_variation_price( $price, $product ) {
$price = '';
$price .= woocommerce_price($product->max_variation_price);
return $price;
}
How wonderful.