Génial !
Merci Jerome !
Pour ceux qui souhaiteraient faire la même chose sur leur site voici la modification à apporter dans la vue product/show_block_product_files.php ligne 29.
Remplacez
foreach ($this->element->files as $file) {
if (empty ($file->file_name)) {
$file->file_name = $file->file_path;
}
$fileHtml = '';
if (!empty ($file->file_free_download)) {
$fileHtml = '<a class="hikashop_product_file_link" href="' . hikashop_completeLink('product&task=download&file_id=' . $file->file_id.$url_itemid) . '">' . $file->file_name . '</a><br/>';
}
$html[] = $fileHtml;
}
par
foreach ($this->element->files as $file) {
if(strpos($file->file_path, '/') !== false) {
$file->file_path = substr($file->file_path, strrpos($file->file_path, '/')+1);
}
if (!empty ($file->file_free_download)) {
$fileHtml = '<a class="hikashop_product_file_link" href="' . hikashop_completeLink('product&task=download&file_id=' . $file->file_id.$url_itemid) . '">' . $file->file_path . '</a><br/>';
}
$html[] = $fileHtml;
}
Pouvez-vous valider qu'il n'y a pas d'erreur Jerome ?
Cordialement, Nossibé