Free Adult Tube-Video Script Forum

Full Version: Category under video on videos page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
To do this, we one have to exchange one line of code.
This code is in the functions file, which is located at
/include/functions.php

The two lines we change in functions.php are the same,
so once you find the first one,
the second one is just a bit further down in the code.

Find this line, in the function "tablo()":
Code:
$data=$data.'<td  valign="top"><a  href="'.$root_url.$linki.'"><div align="center"><img multiple_thumbnail_url="g" class="video-thumb" border="0" src="'.$root_url.'img/thumb/'.$row['v_id'].'_0.jpg" num="'.$row['num'].'" id="thumb'.($i+1).'" alt="'.urldecode($row['title']).'" width="160" height="120" /></div>'.urldecode($row['title']).'</a></td>';

change that, to:
Code:
$cat_id = $row['category'];
$result2 = mysql_query("select * from category where `id` = '$cat_id'");
$cat_tot = mysql_num_rows($result2);
while ($row2 = mysql_fetch_array($result2))
{
$category = urldecode($row2['category']);
}    
$data=$data.'<td  valign="top"><a  href="'.$root_url.$linki.'"><div align="center"><img multiple_thumbnail_url="g" class="video-thumb" border="0" src="'.$root_url.'img/thumb/'.$row['v_id'].'_0.jpg" num="'.$row['num'].'" id="thumb'.($i+1).'" alt="'.urldecode($row['title']).'" width="160" height="120" /></div>'.urldecode($row['title']).'</a><br>Category: '.$category.'</td>';

NOTE: Be sure to clear your cache files for the changes to take effect.
Would this still work for version 3?
Yes it does....
sure does :-)

i think i will make a poll, asking is users want this and views placed under the videos permanently.
I know I do
Reference URL's