blixten19 LiteCart Fan Fra Sweden Medlem siden mai 2022 blixten19 nov. 5 2022 09:21 a.m. 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 aug. 2017 vilaiporn nov. 5 2022 11:23 a.m. 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 mai 2022 blixten19 nov. 5 2022 12:52 p.m. 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 aug. 2017 vilaiporn nov. 6 2022 02:43 a.m. 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.