Great Answer
I increased the bbPress Topic Title max characters to 120 on the netpressions.com forum by adding the lines below to my child theme’s function.php
add_filter ('bbp_get_title_max_length','change_title') ; Function change_title ($default) { $default=120 ; Return $default ; }
You will find this solution at the following url
- netpressionist answered 2 years ago
- last edited 2 months ago
- You must login to post comments
Your Answer