HI,
how to calculate and out the shipping date automatically in to the invoice ?
E.G. [shipping_date] = [current_date] + 8 (days) ?
Thanks a lot,
Michel
this one adds weekdays only to the date
<?php
$daystoship='8';
$ship_date = date('md', strtotime(" + $daystoship Weekdays"));
$mo = substr($ship_date, 0, 2);
$da = substr($ship_date, 2, 2);
$est = $mo . "/" . $da;
echo $est;
?>