Sunday, 20 June 2021
  2 Replies
  600 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
3 years ago
·
#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

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!

3 years ago
·
#222340
0
Votes
Undo
Hello,

I am just checking up with how the above worked?

Many thanks
Tony

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

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