//hook single detail to checkout woocommerce
function st_cart_link_woocommerce($cart_link){
$st_is_woocommerce_checkout = apply_filters('st_is_woocommerce_checkout', false);
if ($st_is_woocommerce_checkout) {
$url = wc_get_checkout_url();
if ($url) {
$cart_link = $url;
}
}
return $cart_link;
}
add_filter('st_cart_link','st_cart_link_woocommerce');