Recent Topics

1 Jun 09, 2008 07:02    

My b2evolution Version: 1.9.x

Hi! I'd like to take out the skin the link that's added on each title that every posts has? Where is located in the inc folder such thing? (I need to do that in order to validate my code as crispy clear water from the Alps! :P ) Thanks in advance! :D

2 Jun 10, 2008 07:30

Do you mean you want to remove the link in the title of each post: so the title has no link at all?

3 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 Jun 11, 2008 19:03

In your skins _main.php find $Item->Title() and replace it with $Item->title

¥

5 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 Jun 12, 2008 08:36

It should read :

<h1><?php echo $Item->dget( 'title' ); ?></h1>

¥

7 Jun 14, 2008 04:07

Thanks a lot ¥åßßå, this works for taking out the links outta the title! :D


Form is loading...