Title of videos - Printable Version +- Free Adult Tube-Video Script Forum (http://freeadultscript.com/forum) +-- Forum: My Category (/forumdisplay.php?fid=1) +--- Forum: General (/forumdisplay.php?fid=2) +--- Thread: Title of videos (/showthread.php?tid=3237) |
Title of videos - garrymula - 13-11-2013 03:50 PM 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 RE: Title of videos - admin - 15-11-2013 04:22 PM 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>'; } |