jelle i used ur code on page 7, turns out i need to remove another batch of code cause when i click on a category, the "top block" gets displayed again. i tried looking in the downloads.php file but i honestly have no clue what to remove.
nvm fixed with this
Open downloads.php
Find
PHP Code:
eval('$dmain_jr = "' . fetch_template('downloads_cat') . '";');
eval('$dpanel = "' . fetch_template('downloads_panel_side') . '";');
eval('$dmain = "' . fetch_template('downloads_wrapper_side') . '";');
Replace with
PHP Code:
eval('$dmain_jr = "' . fetch_template('downloads_cat') . '";');
if ($vbulletin->options['ecdownloads_tops'])
{
eval('$dpanel = "' . fetch_template('downloads_panel_side') . '";');
eval('$dmain = "' . fetch_template('downloads_wrapper_side') . '";');
}
else
{
eval('$dmain .= "' . fetch_template('downloads_wrapper_top') . '";');
}
v6 will have the left column on a per page (home, cat, file, search, ...) basis.
|