Sunday, 20 June 2021
  2 Replies
  897 Visits
0
Votes
Undo
Hi geraint or tonyp,

This is the same issue before when a field is set to "do not include in export" it still include the field name in the header. In one of our event I set to not include in export is the instruction field. When I open the CSV file in Excel, the rows or data after the instruction field is not in the right column.

Can you guys release a fix ASAP please? Our users are using the frontend Export rather than the backend. :D They're still complaining about the backend UI saying it is confusing.

FYI, the backend export is working fine.

Thanks,

Jackson
Wednesday, 23 June 2021 11:01
·
#222305
0
Votes
Undo
change lines 53-58 of components/com_rsvppro/attendees/tmpl/export.php from

$params = $params->renderToBasicArray();
foreach ($params as $param) {
if ($param['label']!="") {
$headerrow [] = Text::_($param['label']);
}
}

to

$params = $params->renderToBasicArray();
foreach ($params as $param) {
if (isset($param['inexport']) && !$param['inexport'])
{
continue;
}
if ($param['label']!="") {
$headerrow [] = Text::_($param['label']);
}
}


I'll include the change in the next release
Friday, 25 June 2021 23:09
·
#222340
0
Votes
Undo
Hello,

I am just checking up with how the above worked?

Many thanks
Tony
  • Page :
  • 1
There are no replies made for this post yet.

Members Area

Show your support

Unlike many Joomla calendars we do not charge to download JEvents - please show your support for this project by becoming a member of the JEvents Club Club members get access to early releases, exclusive member support forums, and Silver and Gold members can use many exciting JEvents addons

Your membership will ensure that JEvents continues to be the best events calendar for Joomla.