I'm integrating customer.io and I am having hard times extracing some kind of data. Let me shot you (example):
Code:
<script type="text/javascript">
_cio.identify({
id: 'prod_287',
email: 'user@domain.com',
created_at: 1339438758,
first_name: 'John',
});
</script>
Looking to your existing code I figured out how to extract the full name with
Code:
echo Yii::app()->customer->getModel()->getFullName();
but [...] getFirstName() is not working... and I need to know how to retrieve all this data.
So I need to add php code, HTML blocks won't work form me
Then, how do I override those core files? I created a /customer/themes/my_theme/views/main.php but doesn't work. And how do I extract those data?
I'm studying Yii but it's kind hard since I was just starting working with laravel.

Your help would me a lot appreciated.
PS: Created_at could be mapped to the existing date_added record I can see in the DB table for customers