By lacwebadmin on Sunday, 20 June 2021
Replies 2
Likes 0
Views 603
Votes 0
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. They're still complaining about the backend UI saying it is confusing.

FYI, the backend export is working fine.

Thanks,

Jackson
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
·
3 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

I am just checking up with how the above worked?

Many thanks
Tony
·
3 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post