Hi, to change that behavior you must edit this file wp-content/themes/kleo/page-parts/post-content-masonry.php
I recommend to copy it to your child theme in the same folder location and edit it there.
1. to change that speed you have to:
– replace assets/js/app.min.js with the one attached since right now theme didn’t supported that
– in the file above around line 82 you should add the slider speed in milliseconds like this:
div class="kleo-banner-items" data-speed="2000"
2.
– line 92, remove the attribute data-rel=”prettyPhoto[inner-gallery]” to disable the lightbox
– to replace the lightbox with link to the post, replace on the same line $slide with get_permalink()
3. line 166 you need to change kleo_excerpt() function to be like:
kleo_excerpt(20, false)
which means it will show 20 letters instead of 20 words
Cheers