I've got the Post Numbers extension and there's a conflict I've just noticed between it and the post numbers displayed by the style.
So if I can hide the post numbers the style displays, that'd be great, thanks.
EDIT: Oh, I see now, I think. Those numbers indicate where a post is in the list of all posts across the board. I just noticed that now when I started a new topic and the Post Numbers extension said the first post was #1 but the style said it was #17. I'd still like to hide those numbers, though, as if you delete a post, they indicate clearly that there's a post missing, e.g. post #17 followed by post #19.
Is there any way not to show the post numbers? - Orange BBEs
-
- Registered User
- Posts: 1383
- Joined: Thu Sep 25, 2014 10:36 am
Re: Is there any way not to show the post numbers?
Hello!
Open styles/OrangeBBEs/template/viewtopic_body.html file (lines 291 to 297)
FIND:
REPLACE WITH:
Go to ACP - Purge Cache
Open styles/OrangeBBEs/template/viewtopic_body.html file (lines 291 to 297)
FIND:
Code: Select all
<!-- IF S_IS_BOT -->
<span><i class="icon fa-file fa-fw <!-- IF postrow.S_UNREAD_POST -->icon-red<!-- ELSE -->icon-lightgray<!-- ENDIF --> icon-md" aria-hidden="true"></i> {L_POST}{L_COLON} #<span class="sr-only">{postrow.MINI_POST}</span></span>
<!-- ELSE -->
<a class="unread" href="{postrow.U_MINI_POST}" title="{postrow.MINI_POST}">
<i class="icon fa-file fa-fw <!-- IF postrow.S_UNREAD_POST -->icon-red<!-- ELSE -->icon-lightgray<!-- ENDIF --> icon-md" aria-hidden="true"></i> {L_POST}{L_COLON} # {postrow.POST_ID}<span class="sr-only">{postrow.MINI_POST}</span>
</a>
<!-- ENDIF -->
Code: Select all
<!-- IF S_IS_BOT -->
<span><i class="icon fa-file fa-fw <!-- IF postrow.S_UNREAD_POST -->icon-red<!-- ELSE -->icon-lightgray<!-- ENDIF --> icon-md" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span></span>
<!-- ELSE -->
<a class="unread" href="{postrow.U_MINI_POST}" title="{postrow.MINI_POST}">
<i class="icon fa-file fa-fw <!-- IF postrow.S_UNREAD_POST -->icon-red<!-- ELSE -->icon-lightgray<!-- ENDIF --> icon-md" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span>
</a>
<!-- ENDIF -->
All unsolicited PMs will be ignored.
Knowledge Base | Documentation | Board rules | phpBB Styles Rules & Policies | Styles Queue Stats
If you like my styles, translations, etc. and want to show some appreciation, then feel free to Donate.
phpBB Spain - Online Since 2003 
If you like my styles, translations, etc. and want to show some appreciation, then feel free to Donate.
-
- Style Customisations
- Posts: 11148
- Joined: Mon Dec 08, 2003 9:24 pm
- Location: Spain
- Name: Raul Arroyo
Re: Is there any way not to show the post numbers?
Hello! YES, that works great! They're all gone now. Thanks!Raul [ThE KuKa] wrote:Hello!
Open styles/OrangeBBEs/template/viewtopic_body.html file (lines 291 to 297)...

-
- Registered User
- Posts: 1383
- Joined: Thu Sep 25, 2014 10:36 am