Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #221243

    Hello!
    The problem is that posts excerpt don’t work at all. I just read some topics with similar troubles and folowed all pieces of advice but nothing helped to solve it.
    Here is the link:
    http://smtdp.de/index.php/blog/
    tnx

    #221609

    Hey jacobsever!

    Please try to follow the suggestion(s) I posted here: https://kriesi.at/support/topic/setting-blog-to-multi-author-big-preview-blog-with-title-excerpt-read-more/#post-221204

    If it still doesn’t work please deactivate all third party plugins and check if a plugin causes the issue.

    Cheers!
    Peter

    #221672

    Tnx for the reply
    I added this code but nothing have changed:

    add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
    function avia_category_content_filter($current_post)
    {
    if(!is_single())
    {
    	$current_post['content'] =  get_the_excerpt();
    	$current_post['content'] .= $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';
    }
    return $current_post;
    }

    Turning off plugins doesn’t help too ;(

    #222073

    Hi!

    Please create me an admin account and post the login credentials as private reply. I need to check why the code doesn’t work for you.

    Best regards,
    Peter

    #222191
    This reply has been marked as private.
    #222594

    Hey!

    The “Insert PHP” plugin seems to overwrite the excerpt with the post content and this breaks the excerpt function. I deactivated the plugin and the excerpt started to work. I recommend to try another plugin like: http://wordpress.org/plugins/insert-php-code-snippet/
    Cheers!
    Peter

    #222724

    Big thanks! It works)

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Problem with blog/excerpt’ is closed to new replies.