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!

This bug will be fixed in Visforms 3.12.4

The bug is easy to fix, because only 3 lines of code in one file are involved.

Open the file administrator\components\com_visforms\models\visdatas.php

Replace the code at line 408 - 410

$where = ' and c.includefieldonexport = 1';
$where .= (!(empty($params->exppublishfieldsonly))) ? ' and c.published = 1' : ''; 
$where .= " and c.typefield NOT in('submit', 'image', 'reset', 'fieldsep', 'pagebreak')";
with
$where = ' includefieldonexport = 1';
$where .= (!(empty($params->exppublishfieldsonly))) ? ' and published = 1' : '';
$where .= " and typefield NOT in('submit', 'image', 'reset', 'fieldsep', 'pagebreak')";