Hi,
please open the file components/com_visforms/views/visformsdata/tmpl/data.php
(Make a copy of the original file first, just in case....)
at line 63 ff you will find the following code
Code:
$n=count( $this->fields );
if (!(isset($this->form->displaydetail) == false) && $this->form->displaydetail == true) { ?>
<th class="data-id"><?php
if (!empty($this->form->displaycounter)) {
echo '<th></th>';
}
Please replace it with
Code:
$n=count( $this->fields );
if (!empty($this->form->displaycounter)) {
echo '<th></th>';
}
if (!(isset($this->form->displaydetail) == false) && $this->form->displaydetail == true) { ?>
<th class="data-id"><?php
Please make sure, that you replace exactly those 6 line!
You can see, basically the code
Code:
if (!empty($this->form->displaycounter)) {
echo '<th></th>';
}
is moved out of that if statement.
Regards,
Aicha