• Please help to display more content.
    if i added this code also its unable to show.

    add_filter(“vsz_display_character_count”,”vsz_display_character_count_callback”,10,1);
    function vsz_display_character_count_callback($count){
    // Your custom coding here

    return $count;
    }

Viewing 1 replies (of 1 total)
  • Plugin Author Vsourz Digital

    (@vsourz1td)

    Hello @akashtonasalli,

    Thank you for contacting us and using our plugin. We are sorry for the late response.

    The filter that you need to use is working but you need to define the character count number that needs to be shown. As default we have restricted upto 16 character, you can exceed them upto your requirement.

    Kindly find the below example code for overriding the default character count.

    add_filter("vsz_display_character_count","vsz_display_character_count_callback",50,1);
    function vsz_display_character_count_callback($count){
    // Your custom coding here
    $new_count = 100;
    return $new_count ;
    }

    Hope the above code helps you.

    Thanks,
    Vsourz

Viewing 1 replies (of 1 total)
  • The topic ‘Unable to display message data more than 16 chars’ is closed to new replies.