• Closed
  • Andrew Fulford
    Spectator
    June 17, 2016 at 11:32 am #28457

    Hi,

    I am just getting to grips with Evolve+ on a site I am moving from Joomla to WordPress. I’m have a problem with my manual extracts which are all being truncated by one word, which is being replaced by […].

    You can see the site at wp.bsac1620.co.uk.

    Thanks in advance for any advice.

    Daniel Jones
    Spectator
    Posts: 148
    June 17, 2016 at 1:32 pm #28463

    Hi Andrew,

    Thanks for contacting us.

    I don’t seem to replicate the issue from my side. Kindly could you share with me temporary login credentials to the backend so that I may figure out the issue. You may delete or change the credentials after we’re done. Please don’t forget to mark the reply as private.

    Looking forward to your reply.

    Andrew Fulford
    Spectator
    Posts: 4
    June 17, 2016 at 1:59 pm #28464
    This reply has been marked as private.
    Denzel Chia
    Moderator
    Posts: 2656
    June 18, 2016 at 8:07 am #28471

    Hi,

    That is WordPress auto-generated excerpt.
    You can create a custom excerpt and you will not see the […] after your excerpt.

    Please see my screen-cast for the steps to create a custom excerpt.
    http://screencast-o-matic.com/watch/cD1F1fiYmz

    Thank you.

    Andrew Fulford
    Spectator
    Posts: 4
    June 18, 2016 at 5:34 pm #28476
    This reply has been marked as private.
    Denzel Chia
    Moderator
    Posts: 2656
    June 20, 2016 at 2:59 am #28486

    Hi,

    As you can see from my screen-cast, it’s working properly.
    Please tell me the exact steps to replicate your issue.
    How you setup your homepage.

    Thank you

    Andrew Fulford
    Spectator
    Posts: 4
    June 21, 2016 at 11:10 am #28511

    I have the homepage set as a static page using the ‘Blog’ template.
    If I switch the template to ‘Default’ the extracts are displayed correctly but I lose the two sidebars that I want to show.

    The problem is also showing on the Posts Slider which is unaffected by the homepage template.

    Denzel Chia
    Moderator
    Posts: 2656
    June 22, 2016 at 4:39 am #28524

    Hi,

    Please open up content-blog.php
    Find the following code at line 154

    
    

    echo evolve_excerpt_max_charlength(350);

    and change to the following

    
    

    the_excerpt();

    Thank you

    Andrew Fulford
    Spectator
    Posts: 4
    June 22, 2016 at 10:43 am #28535

    Many thanks Denzel, that has worked for the homepage blog posts.

    I guess I need to make a similar change to the post-slider code as well.

    Your help is much appreciated.

    Andrew

    Denzel Chia
    Moderator
    Posts: 2656
    June 22, 2016 at 10:44 am #28536

    You are welcome.

    Thank you.

    Kenneth Hitt
    Spectator
    Posts: 3
    July 28, 2016 at 9:22 pm #29433

    Hi, Andrew. The same issue with the post slider has been driving me crazy, but I have solved it.

    In wp-content/themes/evolve(-plus)/library/functions, there is a file called “basic-functions.php”. Open it up and look for “echo evolve_excerpt_max_charlength($excerpt_length);” in the evolve_posts_slider() section.

    Replace:

    echo evolve_excerpt_max_charlength($excerpt_length);

    with:

    the_excerpt();

    and your regular custom excerpts should now appear in the post slider.