How do you increase the bbPress Topic Title max character length?

Report
Question

Please briefly explain why you feel this question should be reported.

Report
Cancel

Answer ( 1 )

    0
    2019-04-24T17:14:45-05:00

    Please briefly explain why you feel this answer should be reported.

    Report
    Cancel
    This answer was edited.

    I increased the bbPress Topic Title max characters to 120 on one of my bbPress forums 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

    https://bbpress.org/forums/topic/topic-title-length/

Leave an answer

Browse

By answering, you agree to the Terms of Service and Privacy Policy.