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! 🎄
Hello,
When a topic has more than one page, and someone clicks on it, wpforo automatically takes them to the last page and does not start with page 1. Which option can change this so that the user stays on page 1?
Warm regards,
Hi,
You can use the hook-code below:
add_filter( 'wpforo_topic_title_structure', function( string $structure ): string{
return str_replace('{au}', '{at}', $structure);
} );
This instruction should be helpful for you: How to Easily Add Custom Code in WordPress (without Breaking Your Site)
Hello,
I tried adding this my child theme's functions.php but the topics became unopenable after. I had previously added code for wpforo as well in functions.php and that worked fine however this is not.
Please help!