1 afinaldecontas Oct 03, 2006 10:18
3 topanga Oct 04, 2006 10:43
lynne wrote:
I made mine look like:
<div class="bSmallHead"> <?php $Item->permanent_link( '#icon#' ); echo ' '; $Item->issue_time(); echo ', ', T_('Categories'), ': '; $Item->categories(); echo ' '; ?> </div>
If you don't want the categories in your article itself, you use this code
<div class="bSmallHead">
<?php
$Item->permanent_link( '#icon#' );
echo ' ';
$Item->issue_time();
?>
</div>
4 balupton Oct 05, 2006 02:23
Just to point out, but the wiki/manual is a great place for begginers;
http://manual.b2evolution.net/Main_Page
I'm new as well, but I'll answer were I can...
All of these things can be handled form within the main file of the skin you want to change. To customize your skin you open the the _main.php file from yours skin's folder and you edit this file as required.
I would strongly suggest you use a "code friendly" text editor. I use Notepad++ and I love it.
Now, how to edit this file?? Well, to get rid of "categories" you find the
in the _main.php file and remove it.
To get rid of the word count and flag, look for the following in the main area:
I made mine look like:
and finally the search engine...find and delete:
You really don't need to know a whole lot about PHP, you just need to know how to find the components you want to change.
You can also edit the CSS file for style and the other PHP file depending on the component you want to affect.
Hope this helps. So far I love b2evo, but then again my only other experience was Blogger!