Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Do you want to increase the length of the video title when you clicking on particular playlist (please refer the link https://screencast.com/t/cDPUlrCneaSj)? If so, please open \wp-content\plugins\contus-video-gallery\front\views\videomore.php and find “function categoryList”. Inside the function, you can find the below code.

    if (strlen($playList->name) > 30) {
    $playListName = substr($playList->name, 0, 30) . "";
    }

    Please increase the value 30 and check. If you are still facing any difficulties in this feel free to contact us with screenshot or site link.

    Thread Starter Nameless_Dream

    (@nameless_dream)

    Changed the value but no effect. Site link

    Hi,

    I have checked your site and found that you are facing the issue in “Home page”
    (https://screencast.com/t/vZKqdh4C). To resolve the issue, please open \wp-content\plugins\contus-video-gallery\front\views\videohome.php and find “function categoryList”. Inside the function, you can find the below code.

    if (strlen($playList->name) > 30) {
     $playListName = substr($playList->name, 0, 30) . "";
    } else {
     $playListName = $playList->name;
    }

    Replace with the following code, if you want to display the full title.

    $playListName = $playList->name;

    If you just want to increase the title length, then increase the value 30 and check. If you are still facing any difficulties in this feel free to contact us.

    Thread Starter Nameless_Dream

    (@nameless_dream)

    Thanks a lot. Finally the problem is solved. ??

    Plugin Author hdflvplayer

    (@hdflvplayer)

    Thank you for your update. If you have any other queries feel free to contact us.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Problem with video titles in playlist’ is closed to new replies.