Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
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.