• Resolved Baskerville

    (@baskerville)


    Hey!

    Is there yet a solution to display the description of youtube videos correct?
    Up to this moment the line break is not displayed, so the whole discription text is squeezed together, which doesn’t look that great. I think it’s rather the fault of the API itself, but who knows, maybe there’s a solution.

    Kind regards,
    Basker

    https://ww.wp.xz.cn/plugins/srizon-responsive-youtube-album/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author afzal_du

    (@afzal_du)

    Hi,
    YouTube gives the newline as \n which needs to be replaced by
    <br>
    on the file
    srizon-yt-album-description.php go to line 47
    change the line
    $output .= ' <div class="descdesc">' . $video['desc'] . '</div>';
    to
    $output .= ' <div class="descdesc">' . nl2br($video['desc']) . '</div>';
    That should do it.
    I’ll try it add this code on the next version
    Thanks for letting me know this.

    Thread Starter Baskerville

    (@baskerville)

    Perfect! It works like a charm.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Description line break’ is closed to new replies.