|
|
|
get_shipping_methods();
if ( ! empty( $methods ) ) {
foreach ( $methods as $method ) {
$class_name = 'yes' === $method->enabled ? 'method_enabled' : 'method_disabled';
echo '- ' . esc_html( $method->get_title() ) . '
';
}
} else {
echo '- ' . __( 'No shipping methods offered to this zone.', 'woocommerce' ) . '
';
}
?>
|