• Resolved rick9004

    (@rick9004)


    When testing my reviews with any of the templates it limits the maximum characters to 500 for the summary / description. This seems to occurs on all templates.

    Where did you store the limiter parameter / function as I can’t find it anywhere. I can write more than 500 just can’t display more than 500 so it is not a DB issue.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Kemory Grubb

    (@w33zy)

    The description is limited to 75 words when displayed. You change it via the rcno_book_description_word_count filter.

    Like so…

    add_filter( 'rcno_book_description_word_count', function( $count ) {
        $count = 99999;
        return $count;
    } );

    Where can we find that code?

    Plugin Author Kemory Grubb

    (@w33zy)

    @paolosub

    That’s a WordPress filter so you’d add it to your current theme’s functions.php file.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Summary /description Character Max Limit’ is closed to new replies.