Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #237771

    I’ve selected for the blog page to show only excerpts with read more link, but it’s still showing the full blog posts (as you can see here: http://lovepolarityandpassion.com/blog/) – can you tell me how to fix this?

    Thanks,

    Claire

    #238898

    Hi ClaireBrummell!

    Have you tried using the built-in, read more on the wp content manager ? i think this will definably solve your problem.

    Let us know if this help,

    Cheers!
    David

    #239039

    This is what I’m currently using David, but as you can see from the link, it doesn’t appear to be working…

    #239946

    Hey!

    Please try to deactivate all plugins and check if the “read more” feature starts to work. If yes a plugin breaks it and you must activate the plugins one by one to find the culprit. If this doesn’t solve the issue please create me an admin account and post the login credentials as private reply.

    Best regards,
    Peter

    #258260
    This reply has been marked as private.
    #259990

    Hey!

    The current version of Enfold is the only one set to work with WordPress 3.9 so before anything else please update your theme files so that we are on the same build.

    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Devin

    #260705

    Hi Devin

    My website’s Enfold section in the back end is saying that I’m running the most up to date version of Enfold? Is that not correct?

    Thanks,

    Claire

    #260707

    Hi!

    No, you are currently using an older version. Please refer to video tutorial Devin posted here – https://kriesi.at/support/topic/blog-excerpt-not-working-2/#post-259990 and update the theme via FTP

    Cheers!
    Yigit

    #260734

    How’s that, is it now running the latest version?

    Thanks,

    Claire

    #261689

    Hey!

    Yes, you’re using v2.7.1 now which is the latest version.

    Best regards,
    Peter

    #261702

    If I’m now using the latest version, can I please now get a response to my original support query?!

    #262233

    Hi!

    Did you use the read more quicktag ( http://en.support.wordpress.com/splitting-content/more-tag/ ) to separate the excerpt from the rest of the content? You can also use the “excerpt” option field on the post editor page to insert a custom excerpt text but if you’re using the default blog template you need to add this code to your child theme functions.php file or enfold/functions.php:

    
    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'] .= '<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;
    }
    

    to query the excerpt from the “excerpt” field.

    Cheers!
    Peter

    #305977
    This reply has been marked as private.
    #307147

    Hi Claire!

    If you are using ALB to build the blogpage you need to deselect this option – http://screencast.com/t/be7wlZxbbk

    Cheers!
    Josue

    #307479

    Thanks so much for this! I really appreciate it :)

    #307493

    You are welcome, always glad to help :)

    Regards,
    Josue

Viewing 16 posts - 1 through 16 (of 16 total)
  • You must be logged in to reply to this topic.