Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #713981

    Hello,

    My customer has a problem with her Blog Page.
    Since some days, all new posts show on the page without text under it. Only “weiterlesen” (read more).

    You can see the page here, the last post are the last three entries:
    http://stilcoach-hannover.de/newsletter/

    I searched on forums and added the read more tag at the end of the text of the first post. It resulted in having part of the text appear when there was before none. Only the customer will like the FULL text to appear (no excerpt, like all the other entries until then).

    Can someone help me with that? I would be greatfull.
    Emilie Krause

    #714033

    Hey comoutloud,

    try this code inside functions.php:

    add_action( 'init', 'my_custom_init' );
    function my_custom_init() {
    	remove_post_type_support( 'post', 'excerpt' );
    }

    Best regards,
    Andy

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