View Single Post
Old
  (#2 (permalink))
genoxide
Moderator
 
Status: Offline
Posts: 260
Join Date: Oct 2004
01-23-2005, 03:46 AM

open mainfile.php find
Code:
function render_blocks($side, $blockfile, $title, $content, $bid, $url) {
make the $title var null so it wont show anything. And you will have something like
Code:
function render_blocks($side, $blockfile, $title, $content, $bid, $url) {
if ($title) { $title = ''; }
    if ($url == "") {
		if ($blockfile == "") {
		    if ($side == "c") {
.....
   
Reply With Quote