Refresh WooCommerce product page on added to cart

Solution:

Maybe this will work for you. It will refresh your page when the add to cart button is clicked. Add it to your functions.php

add_action('woocommerce_add_to_cart', 'refresh_function');

function refresh_function(){
header("Refresh:0");
}