1

Topic: A way to not show "Moderate by..."

Hello all,
I am a french user of PunBB

Doest he have a way to not show "Moderate by..." on the main page ???

Thanxs

MEstk

musikCube french translator / Mario Kart DS player : 253463-173725

[img]http://www.musikcube.com/wiki/images/0/0c/M3_sig_militia_supporter.jpg[/img]

Re: A way to not show "Moderate by..."

You should be able to hide it via the stylesheets. A quick look at the markup shows that hiding "tclcon p" should do the trick. E.g:

tclcon p {
  display: none;
}

"Programming is like sex: one mistake and you have to support it for the rest of your life."

3

Re: A way to not show "Moderate by..."

thanx but where is it ?

musikCube french translator / Mario Kart DS player : 253463-173725

[img]http://www.musikcube.com/wiki/images/0/0c/M3_sig_militia_supporter.jpg[/img]

Re: A way to not show "Moderate by..."

MEstk wrote:

thanx but where is it ?

Open up index.php, and find (line 132):

                                <?php echo $forum_field."\n".$moderators ?>

Replace with:

                                <?php echo $forum_field ?>

No more "moderated by.." text smile

5

Re: A way to not show "Moderate by..."

tanx a lot... !

musikCube french translator / Mario Kart DS player : 253463-173725

[img]http://www.musikcube.com/wiki/images/0/0c/M3_sig_militia_supporter.jpg[/img]

Re: A way to not show "Moderate by..."

The Rickard way are better because u can't need to modif forum code just added it on your  style/imports/<yourstyle>_cs.css

tclcon p {
  display: none;
}

Re: A way to not show "Moderate by..."

Except you have to make that edit in every style you have smile

Re: A way to not show "Moderate by..."

Adding it to the end of base.css should suffice.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

Re: A way to not show "Moderate by..."

i would actually edit the style but not CSS the actual template because you want to save bandwidth.