[Support request] Delete Read More and Show the Whole Post

Home Forums Support [Support request] Delete Read More and Show the Whole Post

Home Forums Support Delete Read More and Show the Whole Post

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #942411
    John

    How do I remove the Read More at the bottom of my posts?

    I also want this removed when a user clicks on a category.

    I want the WHOLE post or page to show up all the time, everywhere, including for searches.

    I used the Loop.php in other versions, but that isn’t here.

    What code do I use and where do I put it?

    #942420
    Leo
    Staff
    Customer Support

    Hi there,

    Have you tried changing the content type to Full Content?
    https://docs.generatepress.com/article/blog-content-layout/#archives

    Let me know ๐Ÿ™‚

    #942429
    John

    Where is that area located? I’ve never seen that.

    #942433
    John

    Nevermind, I found it. Works great. Thanks.

    #942436
    Leo
    Staff
    Customer Support

    Glad you did!

    No problem ๐Ÿ™‚

    #942447
    John

    Oh wait…It’s working for everything except the “Searches.”

    Is there a way to make the full post show up when searches are done?

    #942469
    Leo
    Staff
    Customer Support
    #967405
    John

    It’s working on one of my blogs, but not working on the other one. I did full content and put in the PHP in the functions.php file.

    #967406
    John

    add_filter( ‘generate_show_excerpt’,’tu_full_post_search’ );
    function tu_full_post_search( $show_excerpt )
    {
    if ( is_search() )
    return false;

    return $show_excerpt;
    }

    #967470
    Leo
    Staff
    Customer Support

    Can you link me to the site that’s not working?

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