Recent Topics

1 Jun 16, 2007 18:09    

My b2evolution Version: 1.9.x

Hi,

again a hopefully small question. I´m wondering when clicking on permalinks why the headline is displayed twice.

When searching trough my blog or using the archive, the first headline displays the searched words or archive date andafter that the postings are displayed - all right!

But when I display only one posting via the permalink, the first headline displays the title and directly below the title is shown again.

Is it somehow possible to disable the first headline by permalinks only?

Thanks in advance,
Daniel

2 Jun 16, 2007 18:25

Yeah sure that's easy. In your skins/your_skin/_main.php file find something that looks like this:

request_title( '<h2>', '</h2>' );


Now change it to be more like this:

if( $disp != 'single' ) {
	request_title( '<h2>', '</h2>' );
	}

Again my standard disclaimer applies: I think.

3 Jun 17, 2007 21:18

Hey... you are my hero! Again... big thanx!


Form is loading...