I'm trying to disable one of my shipping methods during certain times of day and can't seem to find a plugin capable of doing so.
So in the simplest form possible it would be an if statement something like:
$time = date("H");
$timezone = date("e");
if($time < "9" || $time > "21") {
$shippingmethod1.disable();
}
I don't know where to start about adding this functionality.
Any help would be greatly appreciated.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…