Bonjour,
Il s'agit d'un soucis dans la class "mail" d'HikaShop ; il vous faut l'éditer (administrator/components/com_hikashop/classes/mail.php) et remplacer
if(!file_exists($path)) {
$path = $mail_folder . $mail_file . '.' . $type . '.php';
if(!file_exists($path)) {
return '';
}
if($getModifiedFile)
return $path = $mail_folder . $mail_file . '.' . $type . '.modified.php';
}
return $path;
Par
if(file_exists($path))
return $path;
$path = $mail_folder . $mail_file . '.' . $type . '.php';
if(file_exists($path)) {
if($getModifiedFile)
return $path = $mail_folder . $mail_file . '.' . $type . '.modified.php';
return $path;
}
if($type == 'text' && $getModifiedFile && file_exists($mail_folder . $mail_file . '.html.php'))
return $path = $mail_folder . $mail_file . '.' . $type . '.modified.php';
return '';
Et cela devrait résoudre le soucis permettant à HikaShop de voir où enregistrer la surcharge alors que le fichier de base n'existe pas.
Cordialement,