Dear Patrick Valmont,
The current module does not support you set word limit for title to display in the module. And you also can't remove the date too.
However, you can follow this to make module work as you want.
1. Open file:
ROOT/modules/mod_vina_list_slider_k2/tmpl/default.php
2. Go to line 117. Change the code:
<?php echo $title; ?> to
<?php echo K2HelperUtilities::wordLimit($title, 15); ?> (15 is the word you want to display. You can change it as you want)
3. To remove the date, you just need remove/comment line 118:
<div class="c"><?php echo JHTML::_('date', $created, 'F d, Y');?></div>
I hope this can help you.
Best regards.