Remove topics/posts/last post from forum links

Guides & Snippets for phpBB3. Try the Snippets here and share Your own Snippets
There is no support here! Only Read Access!
Locked
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 803
Joined: 05 Mar 2010, 01:10
Extra Rank: Donator.png
BBCodes: 2000
Favourite BBCode: porn tube
Favourite MOD: Non of Stokers
Location: up your bum
Contact:

Remove topics/posts/last post from forum links

Post by Steve »

As per title removes the topics ,posts, last post if the forum is actually a forum link,but can not be achieved if links are in a category block see demo pics below.
Real easy this one.
Open styles prosilver/template/forumlist_body.html
find:

Code: Select all

                                       <dd class="topics">{L_TOPICS}</dd>
						<dd class="posts">{L_POSTS}</dd>
						<dd class="lastpost"><span>{L_LAST_POST}</span></dd>
replace with:

Code: Select all

						    <!-- IF not forumrow.S_IS_LINK -->
						<dd class="topics">{L_TOPICS}</dd>
						<dd class="posts">{L_POSTS}</dd>
						<dd class="lastpost"><span>{L_LAST_POST}</span></dd><!-- ENDIF -->
before pic:
link1.PNG
after:
link2.PNG
link categorys forum:
link cat.PNG
Last edited by Steve on 01 Aug 2010, 10:54, edited 1 time in total.
Reason: Updated code.
NAPWR wrote: Nice, Stoker is Hot
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Remove topics/posts/last post from forum links

Post by Stoker »

Nice Steve.
I think this should be standard in the phpBB package.
Board rules! No PM support
cisco007
BBCoder VI
BBCoder VI
Posts: 1015
Joined: 16 Mar 2010, 18:14
Location: Don't really know!

Re: Remove topics/posts/last post from forum links

Post by cisco007 »

yeah, that is nice, i never even looked at that! nice!
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Remove topics/posts/last post from forum links

Post by Stoker »

I have a suggestion for you Steve.
Change:

Code: Select all

<!-- IF forumrow.S_IS_LINK --><!-- ELSE -->
to

Code: Select all

<!-- IF not forumrow.S_IS_LINK -->
Its more correct.
Board rules! No PM support
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 803
Joined: 05 Mar 2010, 01:10
Extra Rank: Donator.png
BBCodes: 2000
Favourite BBCode: porn tube
Favourite MOD: Non of Stokers
Location: up your bum
Contact:

Re: Remove topics/posts/last post from forum links

Post by Steve »

Yes your write stoker same way ive been writing them for the side menu.
1st post updated.
NAPWR wrote: Nice, Stoker is Hot
User avatar
newsbee
BBCoder II
BBCoder II
Posts: 31
Joined: 08 Mar 2010, 10:15

Re: Remove topics/posts/last post from forum links

Post by newsbee »

Traditional question: is it possible to have it for subsilver2-based styles?
Locked