Insert the following code into line 187 of /list_category_posts/include/CatListDisplayer.php:
private function get_post_link($single, $tag = null, $css_class = null){
$info = '<a href="' . get_permalink($single->ID) .
'" title="more">Read more</a>';
return $this->assign_style($info, $tag, $css_class);
}
then in your template call using:
$lcp_display_output .= $this->get_post_link($single);