Joomla 5 Notice

We are pleased to announce that as of January 29, 2024, all of our Joomla extensions are compatible with Joomla 5.

For all who are still updateing from Joomla 3 to Joomla 4: Joomla 4 Migration instructions are available here:

There is now a separate Documentation for Visforms for Joomla 4 and for Visforms for Joomla 5!

Forum

Visforms Subscription user can ask questions in our forum. Please log in with the relevant user first.
Everybody can access the forum for reading.

Please only ask 1 question per topic.

Due to public holidays and vacations, longer response times can be expected for inquiries in the forum between May 18, 2024 and June 2, 2024.

Display date time in Display Data page

More
10 years 6 months ago #289 by Tikki
Hi, I wonder that in "Display data" page would it be able to direct display date and time of each data record instead of click the link on data each line? Can I mod the code?

More
10 years 6 months ago - 10 years 6 months ago #290 by Administrator AV
Replied by Administrator AV on topic Re:Display date time in Display Data page
Hi,

you could change the code in administrator/components/com_visforms/views/visdata/tmpl/default.php

find the th Element with
<?php echo JHtml::_('grid.sort', 'COM_VISFORMS_PUBLISHED', 'a.published', $listDirn, $listOrder); ?>

and copy the the whole th element including the closing tag
and insert it directly after the copied one.

rename a.published in the inserterd element to a.created
Change COM_VISFORMS_PUBLISHED into COM_VISFORMS_DATE

find
<td align="center">
<?php echo $published;?>
</td>
add after this element the following code

<td align="center">
<?php echo $row->created;?>
</td>

If not tested it but I think it will work,

Regards,
Aicha

:idea: I recommend you the new and up-to-date documentation for Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/en/docs/
Most of this also applies retrospectively to Joomla 3.
Please only ask 1 question per topic :-).

:idea: Ich empfehle Dir die neue und aktuelle Dokumentation für Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/docs/
Das meiste gilt rückwirkend auch für Joomla 3.
Bitte immer nur 1 Frage pro Thema stellen :-).
Last edit: 10 years 6 months ago by Administrator AV.

Moderators: Administrator AVAdministrator IV
Powered by Kunena Forum