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

    Open \wp-content\plugins\contus-video-gallery\helper\pluginHelper.php file and find limitTitle. Inside the function you can find the below code. If you want to increase the title length, then increase the value 30.

    if (strlen ( $title ) > 30) {
        /** If exceeds, the find substring upto 30 characters */
        $fullTitle = substr ( $title, 0, 30 ) . '..';
      }

    If you want to show the full title, the hide/remove the above code and check.

    Thread Starter lionas

    (@lionas)

    Thank you, it help, but now i have another problem. Video thumbnail page numbers shows in vertical order. How can i fix it? Is there any way to modifie those page numbers position?

    Share the site link. Also make sure, you have increased the value alone and not touched anything.

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

The topic ‘Full video title’ is closed to new replies.