Recent Topics

1 Sep 16, 2010 23:05    

My b2evolution Version: 3.3.3

What I'm talking about is when you click on a category, it then says in huge font above the posts "Category: [category]" - how can I get rid of this?

example: http://superiorautonw.com/index.php/contact/map/

2 Sep 21, 2010 11:18

Delete from your skin the h2 which calls the category name. It should be between the <div class="text"> and the <div lang="en-US"... >

3 Sep 22, 2010 05:06

This is the only thing I see that has a <div class="text>, it's in my index.main.php file but removing that first "title_before" line doesn't fix it - it just makes the font smaller:

<div class="text">
	<?php
		// ------------------------ TITLE FOR THE CURRENT REQUEST ------------------------
		request_title( array(
				'title_before'=> '<h2>',
				'title_after' => '</h2>',
				'title_none'  => '',
				'glue'        => ' - ',
				'title_single_disp' => true,
				'format'      => 'htmlbody',
			) );
		// ----------------------------- END OF REQUEST TITLE ----------------------------
	?>


Am I missing something?

4 Sep 22, 2010 07:07

Yes, delete that section (do a backup first just in case). The 'title for the current request' calls up the category name dynamically.

I have a different skin which calls the category name in a different way, but that code section you posted looks like it does the same thing.

5 Sep 22, 2010 20:58

Perfect - deleted everything but <div class="text"> and that did it. Muchas gracias!

6 Sep 23, 2010 09:55

No worries, glad it worked :)


Form is loading...