1 mrdav Aug 01, 2006 23:36
3 mrdav Aug 03, 2006 13:48
Wow, thanks a million. I looked just about everywhere but _main.php too.
That is just too easy.
:lol:
4 yabba Aug 03, 2006 15:22
I'm good at being easy :D ..... hmm :-/
¥
5 chrpeder Aug 06, 2006 00:55
And if you need the email to the blog author to work with the nifty corners do this:
copy the _msgform.php from the /skin dir and apply these changes to the _main.php:
<div class="bSmallHead">
<?php
$Item->permanent_link( '#icon#' );
echo ' ';
$Item->issue_time();
echo ', ';
$Item->author();
$Item->msgform_link( $Blog->get('msgformurl') );
echo ', ', T_('Categories'), ': ';
$Item->categories();
echo ' ';
?>
the $Item->msgform_link( $Blog->get('msgformurl') );
is the new one
make this cange also:
<?php // ---------------- START OF INCLUDES FOR LAST COMMENTS, STATS ETC. ----------------
switch( $disp )
{
case 'comments':
// this includes the last comments if requested:
require( dirname(__FILE__).'/_lastcomments.php' );
break;
case 'arcdir':
// this includes the archive directory if requested
require( dirname(__FILE__).'/_arcdir.php');
break;
case 'profile':
// this includes the profile form if requested
require( dirname(__FILE__).'/_profile.php');
break;
case 'msgform':
// this includes the email form if requested
require( dirname(__FILE__).'/_msgform.php');
break;
case 'subs':
// this includes the subscription form if requested
require( dirname(__FILE__).'/_subscriptions.php');
break;
}
// ------------------- END OF INCLUDES FOR LAST COMMENTS, STATS ETC. -------------------
At least I needed this for the 1.8 :D
_main.php defines the colours, the bit you want to change is the last line ;)
¥