Hello,
I've installed ec3 on my wp 3.0 and all is going right by normal posts. The problems appears when I try to use it in a custom type.
First I've added the ec3 meta_box on my custom type called 'Viatges' (plugins/ec3/admin.php)
add_meta_box(
'ec3_schedule_editor', // HTML id for container div
__('Event Editor','ec3'),
'ec3_event_editor_box', // callback function
'Viatges', // page type
'advanced', // context
'high' // priority
);
Ok, now I can add events in my new custom type, but the problem is that JS calendar is not working :(
The problem seem to be the categories handler, but I'm not sure.
Some idea??
Thank you!!