Recent Topics

1 Apr 13, 2008 00:11    

My b2evolution Version: 2.4.1

Using a modification of illacimo
http://coldheartedtruth.com/politics/index.php?blog=5

1) Date stamp on blog does not show time?

This is from the index.main:

$Item->issue_time( array(
'time_format' => 'F jS, Y',
'before' => '<small class="PostAuthor">'.T_(' - '),
'after' => '</small>',
) );
/*

This is from the style.css

.PostAuthor { padding: 1px 0px; margin: 0px; font-size: 10px; color:#8a98a2; font-weight: bold;}
.PostDate { margin: 0px; position: absolute; top: 0px; left: -70px; text-align: center; background: url(images/PostHead.gif) repeat-x bottom; padding: 0px 10px 6px 10px;}
.PostDate small { font-size: 10px; color:#8a98a2; font-weight: bold; }
.PostDate .month { display:block; text-transform: uppercase; font-size: 9px;}
.PostDate .day { display:block; font-size: 24px; line-height: 24px; font-family: 'Arial'; letter-spacing: -1px; font-weight: normal; color:#4a5a65;}
.PostDate .year { display:block;}

I can see why it doesn't show the time (as it is never mentioned) but I have no clue as to how to add it.

2) The permalink for a single blog entry shows the Title twice:

http://coldheartedtruth.com/politics/index.php/2008/04/07/mcsame-ads-fizzling-out?blog=5

Again... I have no idea?

Any help with either would be greatly appreciated.

2 Apr 13, 2008 00:26

1)

$Item->issue_time( array(
'time_format' => 'F jS, Y - H:i:s',
'before' => '<small class="PostAuthor">'.T_(' - '),
'after' => '</small>',
) ); 

3 Apr 13, 2008 00:31

2)
/skins/illacrimo/index.main.php lines 97 - 105:

// ------------------------ TITLE FOR THE CURRENT REQUEST ------------------------
request_title( array(
						'title_before'=> '<h2>',
						'title_after' => '</h2>',
						'title_none'  => '',
						'glue'        => ' - ',
						'title_single_disp' => false,
						'format'      => 'htmlbody',
) );


Change to this code, that is change 'true' to 'false' after 'title_single_disp'

Good luck


Form is loading...