How do I change the delivery date section to automatically update to 3 weeks in the future based on todays date? Right no it just says 2-4 days.
function sv_shipping_method_estimate_label( $label, $method ) {
$label .= '<br /><small>';
switch ( $method->method_id ) {
case 'free_shipping':
$label .= 'Est delivery: 2-4 days';
}
$label .= '</small>';
return $label;
}
add_filter( 'woocommerce_cart_shipping_method_full_label', 'sv_shipping_method_estimate_label', 10, 2 );