Ari, you need to go here:
ow_plugins/event/bol/event_service.php
602 line:
public function getListingData( array $events ) { $resultArray = array();
/* @var $eventItem EVENT_BOL_Event */ foreach ( $events as $eventItem ) { $title = UTIL_String::truncate(strip_tags($eventItem->getTitle()), 80, "...") ; $content = UTIL_String::truncate(strip_tags($eventItem->getDescription()), 100, "..."); $resultArray[$eventItem->getId()] = array( 'content' => $content, 'title' => $title, 'eventUrl' => OW::getRouter()->urlForRoute('event.view', array('eventId' => $eventItem->getId())), 'imageSrc' => ( $eventItem->getImage() ? $this->generateImageUrl($eventItem->getImage(), true) : $this->generateDefaultImageUrl() ), 'imageTitle' => $title ); }
return $resultArray; }
change this line:
$content = UTIL_String::truncate(strip_tags($eventItem->getDescription()), 100, "...");
like this:
$content =' ';// UTIL_String::truncate(strip_tags($eventItem->getDescription()), 100, "...");
in order not to have a description
or change the value 100 to the value you want.
However this modification will influence all listings