Recent Topics

1 Sep 21, 2006 03:00    

Is there a way to disable the flags?

2 Sep 21, 2006 08:39

like in 'just not show them' ?

There are plenty of skins who don't show them,
I suggest, take a look kin those skins.
Its not the ready made sollution, but I'm sure you will learn a lot from it.

Go look in the _main.php file from a skin that does not show flags and look for the difference...

3 Sep 21, 2006 09:15

I was hoping to find out the location for the specific piece of code that controls the flags so that I might remove or change it

4 Sep 21, 2006 11:27

for the custom skin, it is this piece of code

<?php
$Item->issue_time();
echo ', ', T_('Categories'), ': ';
$Item->categories();
echo ', ';
$Item->wordcount();
echo ' ', T_('words'), ' &nbsp; ';
locale_flag( $Item->locale, 'h10px' );
?>

change that by

<?php
$Item->issue_time();
echo ', ', T_('Categories'), ': ';
$Item->categories();
echo ', ';
$Item->wordcount();
echo ' ', T_('words'), ' &nbsp; ';
?>

and you have the same but without the flag

5 Sep 21, 2006 12:32

I found the specified code in the _main.php for the particular blog that I wanted to modify. I removed it as you instructed and it worked exactly as I had hoped. The flags are gone. Thank you very much, you have been extremely helpful.


Form is loading...