• Love your plugin
    Im displaying the db results in a page using a shortcode but sadly the textarea field gets truncated.

    Is there a workaround/shortcode to show the entire textarea field ?

    cheers
    Pete

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter succinctideas

    (@succinctideas)

    Just following this up
    When displaying previous submissions onscreen the text_area field (in my case the user’s Message) gets truncated which significantly reduces the value of this capability

    Is it possible to show more if not all of the text_area field contents in the online display ?

    Cheers
    Pete

    James

    (@jameshilliard)

    GOT IT!!! Thanks to someone else…

    // Function to make Advanced CF 7 DB frontend show 294 textarea characters
    add_filter(‘vsz_display_character_count’,’vsz_display_character_count_callback’,10,1);
    function vsz_display_character_count_callback($count){
    return 294;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Textarea gets truncated in shortcode display’ is closed to new replies.