• Resolved seven640

    (@seven640)


    Hi, When I post on my blog it only shows an excerpt and not the full post
    How can I make the full post appear? I’m using the Kiosko theme.

    • This topic was modified 12 months ago by seven640. Reason: Adding the name of theme

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello

    When you edit a post in the block editor, you can insert a Conent block:

    1. Edit your post.
    2. Click the + and search for Content.
    3. Place it at the the query loop block or inside the editor where you want to show.
    4. Update the post.

    if you still face some issues then –
    By default Kiosko’s loop is probably calling the_excerpt(). You’ll need to swap that out for the_content() in your theme files—ideally via a child theme so your changes aren’t lost on updates. A. Create a Child Theme (if you haven’t already)

    In wp-content/themes/ make a new folder, e.g. kiosko-child/.

    In it, create a style.css /* Theme Name: Kiosko Child Template: kiosko */

    Create an empty functions.php in the same folder.

    Copy & Edit the Loop File

    1. In the parent theme folder (kiosko/), find the template part that outputs the excerpt. Common filenames are:
      • content.php
      • template-parts/content.php
      • template-parts/content-archive.php
      • or even index.php / home.php
    2. Copy that file into the same relative path in your child theme (e.g. kiosko-child/template-parts/content.php).
    3. Open the copied file and look for something like <?php the_excerpt(); ?> Replace it with <?php the_content(); ?>
    4. Save and reload your blog page—the full post content should now appear instead of just the excerpt.

    Activate Kiosko Child under Appearance → Themes.

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    I recommend asking at https://wordpress.org/support/theme/kiosko/#new-post so the theme’s developers and support community can help you with this.

    Thread Starter seven640

    (@seven640)

    Hi Kushagra Goyal I don’t know much about the Block system as I’m using the Classic system for posts. I haven’t been able to find where this file is [<?php the_excerpt(); ?>] so I’m using the Advanced Exerpt plugin to add a ‘read more’ section. I don’t know how to make the link live so I’ve called it ‘read more click title’ which brings up the full post. This works okay.

    Hi Steven Stern, I don’t have a reply from the Kiosko theme forum yet.

    • This reply was modified 12 months ago by seven640.

    Hello @seven640 ,

    Can you please share the url for the theme and the settings you are currently using on your website to show the posts on the homepage ?

    ThankYou

    Thread Starter seven640

    (@seven640)

    Kushagra Hi
    I’ve changed themes so l no longer need any information on this topic.
    Thanks for your concern.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Full post, not excerpt.’ is closed to new replies.