Recent Topics

1 Oct 10, 2005 17:08    

Hi, just as said in the subject, when I load a single post with permalink (by clicking on its title in main page), it shows me a page with the selected post only, but it double the title, by inserting, just before the post (and the title), a line like this:

"Post details: "post's_title"

and then, immediatly after, the entire post, with the TITLE also! So, I get title doubled.

I don't need the entire phrase: how to remove it? I've just tried to remove, from my _main.php file, the line

single_post_title();


or even all this group:

single_cat_title();
single_month_title();
arcdir_title();						
last_comments_title();						
stats_title();
profile_title();

but it didn't work out.

Any suggestion?

Thank you guys,

Francesco

2 Oct 10, 2005 18:08

I just tried this:

<h2><?php
	single_cat_title();
	single_month_title();
	// single_post_title();
	arcdir_title();
	last_comments_title();
	stats_title();
	profile_title();
?></h2>

And it worked.

The date stayed but the details are gone.

Jon

3 Oct 10, 2005 21:54

Thank you, Mr. :)

Your hint did well, it solved my problem! Guess that sometimes comment out code is better than erase it, even if I don't know how it could be different.


Form is loading...