Go Back   vb.org Archive > vBulletin 5 Connect Discussion > vB5 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 11-02-2014, 10:29 PM
jonaus jonaus is offline
 
Join Date: Nov 2014
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How to show Forum Statistics ?

Dear all,
Could you please help me to do thing as the link attached ?
More over, i quite like the style of banner ( full width screen ) but i don't know where i should start the ball rolling. It's really appreciated for and help.

This is my question: http://www.webmastersun.com

Thanks,
Jon
Reply With Quote
  #2  
Old 11-03-2014, 01:00 PM
TommyHara TommyHara is offline
 
Join Date: Dec 2013
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by jonaus View Post
Dear all,
Could you please help me to do thing as the link attached ?
More over, i quite like the style of banner ( full width screen ) but i don't know where i should start the ball rolling. It's really appreciated for and help.

This is my question: http://www.webmastersun.com

Thanks,
Jon
Hello Jon, you can search top x forum statistics in Vbulletin Modifications lib, there are more Mod like that. full width for forum header is style of modern websites today. you need to edit your vbulletin templates to make yours the same.
Reply With Quote
  #3  
Old 11-03-2014, 01:08 PM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I do not believe there is anything like that for vB5 yet.
Reply With Quote
  #4  
Old 11-03-2014, 01:29 PM
TommyHara TommyHara is offline
 
Join Date: Dec 2013
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ozzy47 View Post
I do not believe there is anything like that for vB5 yet.
I thought Jon asked a forum statistic like webmaster sun using, it's a vb4 mod.
he didn't mention to vb version in question
Reply With Quote
  #5  
Old 11-03-2014, 01:30 PM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

True, but the post is in the vB5 section.
Reply With Quote
  #6  
Old 11-04-2014, 07:01 PM
delicjous's Avatar
delicjous delicjous is offline
 
Join Date: Nov 2014
Posts: 352
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Some of these things are already implemented or explained here in there Forum:

I wrote a add-on for my self, but I didn't figure out how to get the forum (thread-, post- and member-count) data. If any body could help we could do it as a vB-improvement-group or something like that :-) probably tbworld could help. :-)

code to get the newest members:
(Thanks to Dead Eddie)
HTML Code:
{vb:set config, {vb:php array}}
{vb:set config.perpage, {vb:raw widgetConfig.number_of_newusers}}
{vb:set config.sortfield, 'joindate'}
{vb:set config.sortorder, 'DESC'}
				<div class="forum-stats-adv-title_newuser">
       {vb:data newmembers, user, memberlist, {vb:raw config}}
         {vb:phrase fforum_statistics_newuser_greeting}
		{vb:set NewuserCount, 0}
		<vb:each from="newmembers" value="newinneruser">
            <vb:if condition=!isset($newinneruser['perpage'])>
				<vb:each from="newinneruser" value="thisnewuser">
						<a href="{vb:url 'profile', {vb:raw thisnewuser}}" title="{vb:phrase fforum_statistics_user_since} {vb:date {vb:raw thisnewuser.joindate}}"><span class="fforum_bold">{vb:raw thisnewuser.username}</span></a><vb:if condition="++$userCount < count($newinneruser)">,  </vb:if>
                </vb:each>
            </vb:if>
        </vb:each>
				</div>
OnlineUser-count:
HTML Code:
{vb:rawdata onlineUsers, wol, fetchAll, {vb:raw page.pageKey}, 'members', 1, {vb:raw widgetConfig.maxUsers}}
	{vb:rawdata onlineUserCounts, wol, fetchCounts, {vb:raw page.pageKey}}
<vb:if condition="$onlineUserCounts['total'] > 1">{vb:rawphrase there_are_x_online, {vb:raw onlineUserCounts.total}}<vb:else />{vb:rawphrase there_is_x_online, {vb:raw onlineUserCounts.total}}</vb:if> {vb:rawphrase x_members_and_y_guests, {vb:raw onlineUserCounts.members}, {vb:raw onlineUserCounts.guests}}.<br />
			{vb:rawphrase fforum_most_users_ever_online_was_x_y_at_z, {vb:raw onlineUserCounts.recordusers}, {vb:datetime {vb:raw onlineUserCounts.recorddate}, date}, {vb:datetime {vb:raw onlineUserCounts.recordtime}, time}}
And display the online users:
HTML Code:
<!-- If you use all that 3 code-snippets xou could delete the code between this comments -->
{vb:rawdata onlineUsers, wol, fetchAll, {vb:raw page.pageKey}, 'members', 1, {vb:raw widgetConfig.maxUsers}}
	{vb:rawdata onlineUserCounts, wol, fetchCounts, {vb:raw page.pageKey}}
<!-- if delete comment -->
					<ul class="onlineuserlist h-clearfix">
						{vb:set userCount, 0}
						<vb:each from="onlineUsers" value="onlineUser">
							<li class="h-left">
									<a href="{vb:url 'profile', {vb:raw onlineUser}}" class="avatar h-left">
										<vb:if condition="!empty($onlineUser['avatarpath'])">
											<img title="{vb:raw onlineUser.username}" alt="{vb:raw onlineUser.username}" src="{vb:raw baseurl_corecdn}/{vb:raw onlineUser.avatarpath}" />
										<vb:else />
											<img title="{vb:raw onlineUser.username}" alt="{vb:raw onlineUser.username}" src="{vb:raw baseurl_corecdn}/images/default/default_avatar_medium.png" width="64" height="64" />
										</vb:if>
									</a>
							</li>
						</vb:each>
					</ul>
My widget is all in german right now and I use some parts of dragonbyte's infopanel... after I translate and clean it I will post it here. Iam a little busy ...so it could be next week.

Update:
I attached the widget-modul I do for my Forum. Hope it will help you.
in widget-config you could choose if you have installed Infopanel from Dragonbyte and would use the code ofi it at the statistic-widget.
Attached Files
File Type: xml product_forum_statistics_widget.xml (11.5 KB, 6 views)
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:25 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04285 seconds
  • Memory Usage 2,244KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (3)bbcode_html
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (6)post_thanks_box
  • (6)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (6)post_thanks_postbit_info
  • (6)postbit
  • (1)postbit_attachment
  • (6)postbit_onlinestatus
  • (6)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete