Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Hi @anonymous3542,
I've asked deveolpers and the best way to do it I'll describe below.
You should customize the forum-thread.php file in the wp-content/plugins/wpforo/wpf-themes/classic/layouts/4/ folder.
Add the following code in the file. The code will show the body of the first post. I've attached the image below, please check it. On the screenshot, you'll see the row you should add the code.
<div class="custom-wpf-thread-first-post-body">
<?php
$topic = wpforo_topic($topicid);
$first_post_body = wpforo_post($topic['first_postid'], 'body');
wpforo_text($first_post_body, 250);
?>
</div>
As I've mentioned the code will just show the body of the first post. You'll need to add some CSS code, to display as it should be.
