1 gabriel1980 Jun 09, 2008 07:02
3 gabriel1980 Jun 11, 2008 16:43
filthio wrote:
Do you mean you want to remove the link in the title of each post: so the title has no link at all?
Exactly! Where in the whole lines of code could I do that?
4 yabba Jun 11, 2008 19:03
In your skins _main.php find $Item->Title() and replace it with $Item->title
¥
5 gabriel1980 Jun 11, 2008 20:01
¥åßßå wrote:
In your skins _main.php find $Item->Title() and replace it with $Item->title
¥
Hi ¥åßßå! Well, I tried that, with no results, what could it be? What I do is change this line
<h1><?php $Item->title(); ?></h1>
for this other
<h1><?php $Item->title ?></h1>
what could I be doing wrong? Thanks for the patience!!! :D
6 yabba Jun 12, 2008 08:36
It should read :
<h1><?php echo $Item->dget( 'title' ); ?></h1>
¥
7 gabriel1980 Jun 14, 2008 04:07
Thanks a lot ¥åßßå, this works for taking out the links outta the title! :D
Do you mean you want to remove the link in the title of each post: so the title has no link at all?