Retrieve body text of an event (ProEvents)
Permalinkif($b->getBlockTypeHandle()=='content'){
never evaluates to true.
$block = $event->getBlocks('Main'); foreach($block as $bi) { if($bi->getBlockTypeHandle()=='content'){ $content = $bi->getInstance()->getContent(); } }
Should have seen that myself...
2. - in the event list loop, you would use this:
ChadStrat