Hi there,
I’ve created a custom CSV export for my client, and it’s working (almost) perfectly with the exception of one minor issue. I’m having an issue where tribe_get_organizer_link refuses to save to my array and instead always echoes out, regardless of how I set it.
Here’s the code I’m using, with some testing:
echo “Website: “;
echo tribe_get_organizer_link($post->ID, false);
$events[$count][] = tribe_get_organizer_link($post->ID, false);
And this is what outputs:
Website: http://ACTrees.orghttp://ACTrees.org
It’s blank in my array and doesn’t output to my CSV file at all. All other fields seem to work as expected.
If it helps at all, the exporter is at http://demo.neighborwoodsmonth.org/csv-exporter/
What am I doing wrong?
Cheers!