blixten19 LiteCart Fan Fra Sweden Medlem siden blixten19 5 nov. 2022 09:21 Someone know how i get this information in shop. i will have so i can insert nex delivery Look on the picture
vilaiporn LiteCart Fan Fra Thailand Medlem siden vilaiporn 5 nov. 2022 11:23 If you want to show a date: <?php echo date('Y-m-d', strtotime($date. ' + 3 days')); ?> where 3 is how many days after actual day is the delivery date. But probably I did not understand your question right.
blixten19 LiteCart Fan Fra Sweden Medlem siden blixten19 5 nov. 2022 12:52 Where a insert this? Want the text Next delivery to our warehouse and the date when the delivery is calculated
vilaiporn LiteCart Fan Fra Thailand Medlem siden vilaiporn 6 nov. 2022 02:43 Next delivery to our warehouse: look for title_delivery_statuses in admin/translations date when the delivery is calculated: in public_html\includes\templates\default.catalog\views\box_product.inc.php locate <?php echo $delivery_status; ?> and replace with <?php echo date('Y-m-d', strtotime($date. ' + 3 days')); ?> Remember to back up before.