how i can add shipping class to product page before buttom “shop now”?
I try use this code but no working.
function wpse_295878_shipping_banner() {
$product = wc_get_product();
$shipping_class = $product->get_shipping_class();
switch ( $shipping_class ) {
case ‘free-shipping’:
echo ‘
‘;
break;
case ‘flat-rate’:
echo ‘
‘;
break;
}
}
add_action( ‘woocommerce_before_single_product’, ‘wpse_295878_shipping_banner’, 20 );