VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: michel777 on July 20, 2018, 08:17:27 AM

Title: Calculate shipping date automatically
Post by: michel777 on July 20, 2018, 08:17:27 AM
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
Title: Re: Calculate shipping date automatically
Post by: PRO on July 22, 2018, 15:22:09 PM
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;
?>