Hi,
I have created a dynamic template for my blog page, showing an intro from a page with its slideshow and below with the "dynamic template element" BLOG.
So far so good, but:
- The "read more" (German: "weiterlesen") is not linked
- how can I get rid of the last three points at the end of the post excerpt?

I have following code in my functions.php (to limit the post excerpt):
/** Modify the length of post excerpts */
add_filter( 'excerpt_length', 'custom_excerpt_length' );
function custom_excerpt_length($length) {
return 20; // pull first 50 words
}
function new_excerpt_more( $more ) {
return;
}
add_filter('excerpt_more', 'new_excerpt_more');
and in loop-index.php I have put this code (found somewhere here in the CORONA forum):
<div class="entry-content">
<?php
if(strpos($avia_config['layout'], 'medium_image sidebar') !== false) echo $slider->display_small('blog');
if(!is_single()){
the_excerpt(__('Weiterlesen →','avia_framework'));
echo ''.__('Weiterlesen →','avia_framework').'';
}else{
the_excerpt(__('Weiterlesen →','avia_framework'));
}
and in helper-templates.php I have put this code around line 856:
if(is_single()){
$content = get_the_content('<span class="inner_more">'.__('Read more →','avia_framework').'</span>');
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
I don't know PHP very well, and therefor I don't know where and how to put the linking of "Read more"/"weiterlesen" and how to get rid of the last three points at the end of the excerpt.
Could you please help me out?
Thanks a lot!














