Hello,
what I need to do is to compose a link field from other
fields. I try to use Code Before Render plugin field but there is a problem because data taken from other fields are objects not strings.
For example:
$otherField = $fields['art_address'];
$fields['art_link']->html = '<a href="'.$otherField.'">download</a>';
doesn't work and I get the error:
"Object of class stdClass could not be converted to string"
Maybe there is a different way to do it?
This is the seb_table template so we can't use position override method...
and all data for fields are imported from CSV files.
Regards, Paul.