Title of videos
|
13-11-2013, 03:50 PM
Post: #1
|
|||
|
|||
Title of videos
hi can i have the video Titles turned of (Not Shown) and just have the thumb nail there. if so which file do i use.
Thanks |
|||
15-11-2013, 04:22 PM
Post: #2
|
|||
|
|||
RE: Title of videos
open include/functions.php
find function table_html function table_html($title,$linki,$v_id,$num,$hit,$rate_width,$recent_id="",$baslik="",$pop_down="") { if ($baslik==""){$baslik=str_limit($title);} global $root_url; return '<li><div class="li_content pop_down">'.$pop_down.'<div class = "img_wrapper"><a title="'.html_encode($title).'" href="'.$root_url.$linki.'"><img class="video-thumb" src="'.$root_url.'img/thumb/'.$v_id.'_0.jpg" id="v'.rand(1,100).'_'.$v_id.'-'.$num.'" alt="'.html_encode($title).'" width="160" height="120" /></a><br /><a title="'.html_encode($title).'" href="'.$root_url.$linki.'">'.$baslik.'</a></div><div class="views">Views:'.$hit.'</div><div id="v'.$recent_id.'-'.$v_id.'" class="stat"> <span class="ui-rater-starsOff" style="width:100px;"><span class="ui-rater-starsOn" style="width:'.$rate_width.'px"></span></span> </div></div></li>'; } and replace it with below code; function table_html($title,$linki,$v_id,$num,$hit,$rate_width,$recent_id="",$baslik="",$pop_down="") { $baslik=""; $title=""; if ($baslik==""){$baslik=str_limit($title);} global $root_url; return '<li><div class="li_content pop_down">'.$pop_down.'<div class = "img_wrapper"><a title="'.html_encode($title).'" href="'.$root_url.$linki.'"><img class="video-thumb" src="'.$root_url.'img/thumb/'.$v_id.'_0.jpg" id="v'.rand(1,100).'_'.$v_id.'-'.$num.'" alt="'.html_encode($title).'" width="160" height="120" /></a><br /><a title="'.html_encode($title).'" href="'.$root_url.$linki.'">'.$baslik.'</a></div><div class="views">Views:'.$hit.'</div><div id="v'.$recent_id.'-'.$v_id.'" class="stat"> <span class="ui-rater-starsOff" style="width:100px;"><span class="ui-rater-starsOn" style="width:'.$rate_width.'px"></span></span> </div></div></li>'; } |
|||
« Next Oldest | Next Newest »
|