Show Views on viewtopic

A perfect place for code snippets to small to be a MOD or a library.
Or for examples on how to use our libraries.
Post Reply
User avatar
tumba25
Supporter
Supporter
Posts: 1058
Joined: 24 Oct 2007, 13:10
Real name: Jari Kanerva
Location: Kokkola, Finland.
Contact:

Show Views on viewtopic

Post by tumba25 »

This post was originally posted by Kenny at 6 String MODs, I have made some minor adjustments.

Requested by NguyTieuNhan in [url=http://www.phpbb.com/community/viewtopic.php?f=72&t=1807205]this topic[/url].

#
#-----[ OPEN ]------------------------------------------
#
language/en/viewtopic.php
#
#-----[ FIND ]------------------------------------------
#

Code: Select all

   'VIEW_TOPIC_POSTS'      => '%d posts',

#
#-----[ AFTER, ADD ]------------------------------------------
#

Code: Select all

   'VIEW_TOPIC_VIEW'      => '1 view',
   'VIEW_TOPIC_VIEWS'      => '%d views',

#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/template/viewtopic_body.html
#
#-----[ FIND ]------------------------------------------
#

Code: Select all

{TOTAL_POSTS}

#
#-----[ IN-LINE FIND ]------------------------------------------
#

Code: Select all

{TOTAL_POSTS}

#
#-----[ IN-LINE BEFORE, ADD ]------------------------------------------
#

Code: Select all

{TOTAL_VIEWS} • 

#
#-----[ FIND ]------------------------------------------
# This find is option, if you also want the topic views to show at the bottom of the page

Code: Select all

{TOTAL_POSTS}

#
#-----[ IN-LINE FIND ]------------------------------------------
#

Code: Select all

{TOTAL_POSTS}

#
#-----[ IN-LINE BEFORE, ADD ]------------------------------------------
#

Code: Select all

{TOTAL_VIEWS} • 

#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#

Code: Select all

    'TOTAL_POSTS'            => ($total_posts == 1) ? $user->lang['VIEW_TOPIC_POST'] : sprintf($user->lang['VIEW_TOPIC_POSTS'], $total_posts),   &nbsp

#
#-----[ AFTER, ADD ]------------------------------------------
#

Code: Select all

    'TOTAL_VIEWS'            => ($topic_data['topic_views'] == 1) ? $user->lang['VIEW_TOPIC_VIEW'] : sprintf($user->lang['VIEW_TOPIC_VIEWS'], $topic_data['topic_views']),   &nbsp
ISMAIL
New member
New member
Posts: 4
Joined: 04 Dec 2011, 08:15

Re: Show Views on viewtopic

Post by ISMAIL »

Nice, Is it work with phpbb2 too ?
User avatar
tumba25
Supporter
Supporter
Posts: 1058
Joined: 24 Oct 2007, 13:10
Real name: Jari Kanerva
Location: Kokkola, Finland.
Contact:

Re: Show Views on viewtopic

Post by tumba25 »

ISMAIL wrote:Nice, Is it work with phpbb2 too ?

No.
Post Reply