Recent Topics

1 Sep 17, 2006 21:03    

Hi,

I've set up the Linkblog blog to only contain links for Partners Websites and I want to remove/not display the permalink icon next to a link on the main blog. How do I disable the permalink icon?

Thanks,

Matthew

2 Sep 17, 2006 23:43

I'm not certain about this, so keep a backup of the original file.

Go to the skins folder, select _linkblog.php and find...

$Item->permanent_link( '#icon#' );
		echo $linkblog_item_after;

and delete it.

3 Jan 17, 2007 08:00

To be a little more precise, you should change:


	echo ' ';
	$Item->permanent_link( '#icon#' );
		echo $linkblog_item_after;
	}


into:

//        Removed: PermaLink icon
//		echo ' ';
//		$Item->permanent_link( '#icon#' );
		echo $linkblog_item_after;
	}


The last line: echo $linkblog_item_after; closes the list-item with </li>. It's not essential, but it should be there. I used // before the lines to comment them out, but you could also delete the lines that are now in orange.


Form is loading...