Hi,
The download area PHP code has been customized on that page. And the issue is apparently linked to that customization.
So I'm not sure what you should do as I don't know the actual situation on your end.
Normally, the code displaying the download links is in the file "show_block_product_files" that you can edit via the menu Display>Views.
There you should normally have that code:
<div id="hikashop_product_files_main" class="hikashop_product_files_main">
<?php
if(!empty($this->element->files)) {
$files = array();
foreach($this->element->files as $file) {
if(empty($file->download_link))
continue;
if(empty($file->file_name))
$file->file_name = $file->file_path;
$files[] = '<a class="hikashop_product_file_link" href="' . $file->download_link . '">' . $file->file_name . '</a>';
}
if(count($files)) {
?>
<fieldset class="hikashop_product_files_fieldset">
<legend><?php echo JText::_('DOWNLOADS'); ?></legend>
<?php echo implode('<br/>', $files); ?>
</fieldset>
<?php
}
}
?>
</div>
Either the code there has been changed, or the "show_default" view file has been customized to not even use the "show_block_product_files" view file.