PrestaShop : Add a “Disponible dans X jours” Label ( Étiquette personnalisée )
EN: In this post, I’ll show how I modified my Angar theme on PrestaShop 8 to display an automatic label like “Disponible dans 5 jours” (“Available in 5 days”) when a product is out of stock but has an available_date set. This change was made by editing the product miniature template file: FR : Dans cet article, j’explique comment j’ai personnalisé le thème Angar sous PrestaShop 8 pour afficher une étiquette automatique du type “Disponible dans 5 jours” lorsque le produit est en rupture de stock mais possède une date de disponibilité . La modification a été faite dans le fichier suivant : /themes/angar/templates/catalog/_partials/miniatures/product.tpl Remarque : j’ai d’abord essayé de modifier /themes/angar/templates/catalog/_partials/product-flags.tpl , mais cela ne fonctionne pas avec ce thème Code modification EN: The code below adds a custom block to calculate the number of days between today and the product’s available_date . If the difference i...