1 swaitela Jun 07, 2009 23:16
3 swaitela Jun 08, 2009 00:09
The skin is based on Asevo...and putting the edit in the bottom line is not a problem if you could tell me where to do that and how ;o) THANKS
4 john Jun 08, 2009 00:56
Ok..
First things first: Make a backup copy of files that your going to edit.
Now, open the the index.main.php file for your "aseveo/timmy" skin and find and delete the following...
<?php
$Item->edit_link( array( // Link to backoffice for editing
'before' => ' ',
'after' => ' ',
'class' => 'floatright small'
) );
?>
Now..further down in that file you wil find....
<div class="evo_post_foot">
<?php
// Link to comments, trackbacks, etc.:
$Item->feedback_link( array(
'type' => 'comments',
'link_before' => '',
'link_after' => '',
'link_text_zero' => '#',
'link_text_one' => '#',
'link_text_more' => '#',
'link_title' => '#',
'use_popup' => false,
) );
?>
<?php
// Link to comments, trackbacks, etc.:
$Item->feedback_link( array(
'type' => 'trackbacks',
'link_before' => ' • ',
'link_after' => '',
'link_text_zero' => '#',
'link_text_one' => '#',
'link_text_more' => '#',
'link_title' => '#',
'use_popup' => false,
) );
?>
</div>
And add the following to the above....
<?php
// Link to Edit the Post:
$Item->edit_link( array( // Link to backoffice for editing
'before' => ' ',
'after' => ' ',
) );
?>
as follows....
<div class="evo_post_foot">
<?php
// Link to comments, trackbacks, etc.:
$Item->feedback_link( array(
'type' => 'comments',
'link_before' => '',
'link_after' => '',
'link_text_zero' => '#',
'link_text_one' => '#',
'link_text_more' => '#',
'link_title' => '#',
'use_popup' => false,
) );
?>
<?php
// Link to Edit the Post:
$Item->edit_link( array( // Link to backoffice for editing
'before' => ' ',
'after' => ' ',
) );
?>
<?php
// Link to comments, trackbacks, etc.:
$Item->feedback_link( array(
'type' => 'trackbacks',
'link_before' => ' • ',
'link_after' => '',
'link_text_zero' => '#',
'link_text_one' => '#',
'link_text_more' => '#',
'link_title' => '#',
'use_popup' => false,
) );
?>
</div>
Good luck...
5 swaitela Jun 08, 2009 01:16
Worked like a charm! Thank you for helping me with my elementary problem! Everyone here helps me learn more about the code with each issue. Ya'll are wonderful. Sue
6 john Jun 08, 2009 01:19
Cheers, glad it worked.
Well, without being logged in, a visitor doesn't see your "edit post" link.
If your saying it's on the same line as 05/24/09 02:01 , Categories: etc etc ( just above the cartoon ) you have to realise that that line expands to show tags etc and that it's most likely pushing anything floated right out of alignment.
I would move your "edit" link to below the post in the same row as "Leave a Comment" etc
What skin is your skin "timmy" based on?