vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Forum Home Enhancements - Latest Posts and Newest Members on Forum Home (https://vborg.vbsupport.ru/showthread.php?t=231098)

zeroality 01-09-2010 04:55 PM

Quote:

Originally Posted by sisterhood (Post 1951148)
perfect mod

please tell me how can i delete ONLY Top Posters Row?

Yeah, you can just tell us where to go to edit the table or div code to remove columns, etc. I was looking at it a minute ago and realized I'd like to get rid of the # column in each stat - totally unnecessary.

dtommy79 01-09-2010 05:08 PM

Edit it in the xml file and import the plugin again overwriting the old one.

StormLily 01-10-2010 03:14 AM

I noticed this version doesn't give you an option to exclude forums from the latest post list. Can this be done or is there something I have to do?

zeroality 01-10-2010 06:42 AM

Quote:

Originally Posted by StormLily (Post 1951652)
I noticed this version doesn't give you an option to exclude forums from the latest post list. Can this be done or is there something I have to do?

Post #77.

RoteRose 01-10-2010 09:33 AM

Hi,

nice Mod, please use the images of the active template, thats all.

thx

Datenpapst 01-10-2010 03:26 PM

Possible to get this one under the navbar?

and get a display like that:

http://forum.c-arena.com/index_forum.php

dtommy79 01-10-2010 03:39 PM

Quote:

Originally Posted by Datenpapst (Post 1952021)
Possible to get this one under the navbar?

and get a display like that:

http://forum.c-arena.com/index_forum.php

Yes, read back in this thread, there is an attachment

zeroality 01-11-2010 11:43 AM

I removed Newest Members but now I am faced with another issue. I would like to add the forum name in where the latest post is from - like an additional column with that data. This is how it was in Cyb's Forum Stats hack and I really liked it. I tried coding it myself but got a database error when I put it up live and I just don't know how to do it. All I really need is the code to insert - like:

Code:

        $latestposts = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "thread WHERE visible=1 $excluded_forums_query ORDER BY lastpostid DESC LIMIT 0,".$howmany_latestposts);
        $latest_posts .= '<table width="100%"><tr><td width="60%">Latest Posts</td><td width="40%">Top Posters</td></tr><tr><td><table width="100%" border="0" cellspacing="3" cellpadding="3">';
        $count=1;
        while ($post = $vbulletin->db->fetch_array($latestposts))
        {
                $latest_posts .= '<tr><td><a href="showthread.php?t='.$post['threadid'].'&amp;goto=newpost#'.$post['lastpostid'].'">'.substr($post['title'],0,50).'...</a></td><td><a href="member.php?u='.$post['lastposterid'].'">'.$post['lastposter'].'</a></td><td><a href="showthread.php?t='.$post['threadid'].'"><img src="images/buttons/collapse_40b.png" alt="" /></a></td></tr>';
                $count++;
        }
        $latest_posts .= '</table>
        </td><td>

I know you need to query the forum table and get the forum[title] from there so all I need is a little code modification in what I pasted above. Many thanks!

italcro 01-12-2010 05:28 PM

Hi everybody
I am wondering if this product can help me hide some statistics, especially new users, if I want to.
My problem is that I am looking for some hack or add-on or whatever in order to be able to hide the advanced forum statistics.
Since some people are registering on my forum with obscene names, I don't want these people to appear on the statistics until they have been approved by myself or a mod.
Any help would be immensely appreciated.
Thanks in advance
Italcro

albrens 01-15-2010 06:02 AM

Thanks dear

Punjabi Munda 01-17-2010 04:58 AM

i'm back from vacation. can any1 remind me the things that need to be done. i might not be able to read every single post.

PinoyRepublic 01-17-2010 09:32 AM

can you include the username color?

Sophocles 01-18-2010 04:53 PM

Works perfectly.

bigtime 01-18-2010 08:16 PM

Can this be used to show latest posts on a custom page?

zeroality 01-19-2010 03:28 AM

Quote:

Originally Posted by Punjabi Munda (Post 1957905)
i'm back from vacation. can any1 remind me the things that need to be done. i might not be able to read every single post.

I removed Newest Members but now I am faced with another issue. I would like to add the forum name in where the latest post is from - like an additional column with that data. This is how it was in Cyb's Forum Stats hack and I really liked it. I tried coding it myself but got a database error when I put it up live and I just don't know how to do it. All I really need is the code to insert - like:

Code:

        $latestposts = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "thread WHERE visible=1 $excluded_forums_query ORDER BY lastpostid DESC LIMIT 0,".$howmany_latestposts);
        $latest_posts .= '<table width="100%"><tr><td width="60%">Latest Posts</td><td width="40%">Top Posters</td></tr><tr><td><table width="100%" border="0" cellspacing="3" cellpadding="3">';
        $count=1;
        while ($post = $vbulletin->db->fetch_array($latestposts))
        {
                $latest_posts .= '<tr><td><a href="showthread.php?t='.$post['threadid'].'&amp;goto=newpost#'.$post['lastpostid'].'">'.substr($post['title'],0,50).'...</a></td><td><a href="member.php?u='.$post['lastposterid'].'">'.$post['lastposter'].'</a></td><td><a href="showthread.php?t='.$post['threadid'].'"><img src="images/buttons/collapse_40b.png" alt="" /></a></td></tr>';
                $count++;
        }
        $latest_posts .= '</table>
        </td><td>

I know you need to query the forum table and get the forum[title] from there so all I need is a little code modification in what I pasted above. Many thanks!

maf1973 01-19-2010 10:06 AM

Quote:

Originally Posted by dtommy79 (Post 1952039)
Yes, read back in this thread, there is an attachment

Where? I checked all attached files but i don't found one with that style?

ArbStar 01-19-2010 04:01 PM

Quote:

Originally Posted by Punjabi Munda (Post 1957905)
i'm back from vacation. can any1 remind me the things that need to be done. i might not be able to read every single post.

Search for my posts in this thread

movslow 01-19-2010 05:08 PM

Quote:

Originally Posted by ArbStar (Post 1960321)
Search for my posts in this thread

BIG THANKS to ArbStar for stepping up and helping everyone out!!
:up:

zeroality 01-22-2010 05:26 PM

Bumping, incase anybody else can help out? If not, I'll wait for the coders. :D

ArbStar 01-22-2010 07:41 PM

Quote:

Originally Posted by zeroality (Post 1963623)
Bumping, incase anybody else can help out? If not, I'll wait for the coders. :D

help out with what ?

the developer is back from vacation, i think he will be able to help :)

I'm still waiting for his reply regarding my modifications....

zeroality 01-22-2010 11:41 PM

I am asking what I need to change to have it display which forum the latest post is in. I can figure out the html part, I just need the sql/php code.

ArbStar 01-23-2010 06:54 AM

will be something similar to this, if you want i'll make new XML file for u:

PHP Code:

$forum_query $vbulletin->query("SELECT * FROM `forum` WHERE `forumid`='" $post[forum_id] . "'");
$forum_title $forum_query['forum_title']; 

I will do it for u if u want

icemann 01-30-2010 12:53 PM

Nice mod and thanks for the permissions fix. :cool:

whitedd 01-30-2010 11:02 PM

thnx...

Punjabi Munda 02-03-2010 11:44 PM

thanks to ArbStar for updating this modification.....i am uploading the xml file that ArbStar posted with all credits for editing to ArbStar

iyama 02-04-2010 05:45 AM

Is it possible to show more text on the left site "Title"?
Like showing the complete subject name of the first post

movslow 02-04-2010 02:00 PM

I see an update, but what was updated?

Stefanus 02-06-2010 03:58 PM

Quote:

Originally Posted by movslow (Post 1974686)
I see an update, but what was updated?

Quote:

Originally Posted by Punjabi Munda (Post 1974287)
thanks to ArbStar for updating this modification.....i am uploading the xml file that ArbStar posted with all credits for editing to ArbStar

......... ;)

movslow 02-12-2010 05:36 PM

Thanks ^^

Has this been modified yet to include an auto refresh?

Say user adjustable from 10/60 seconds?

It would prevent the need for people to reload the entire page, when the mod itself would do that.

Thanks

DeviantFlash 02-13-2010 11:34 PM

Also looking for username colors to be included in the mod.

Like my admins show red, registered users show blue, etc etc

phonexpo 02-17-2010 08:35 PM

I just installed this mod on v4.0.2, but it's not showing for me :/

Any ideas?

BR's

-Patrick

Hall of Famer 02-17-2010 09:59 PM

Can I ask a question? Is it possible to hide threads/posts from staff section and other hidden subforums from the public? It appears that members can see the title of the threads we make in staff section now...

SpongeBob71 02-18-2010 12:46 AM

I am having the same issue as phonexpo. It won't show on unde the navbar for me either and I am using 4.02.

Thanks in advance,

Sponge

phoenix1977 02-28-2010 10:56 PM

How to hide private posts? For example Admin Section...

imported_stefan 03-01-2010 08:26 PM

Dangerous Mod because it displays also hidden Text (Title) from hidden forums.

zeroality 03-03-2010 12:23 AM

Switching over to VSa due to lack of support/upgrades.

Chicago_VLNU_4s 06-08-2011 02:01 AM

thanks, just what i needed. a basic "latest thread" version for vb4

*install*

Paulie420 07-02-2011 05:35 AM

Does this work with 4.1.3???

Ryan1241 12-19-2011 10:05 AM

I am currently running vBulletin 4.1.9

lateststatistics.xml works fine

But I can not get lateststatistics_Navbar.xml to show up. Maybe it is my theme? I would LOVE to get lateststatistics_Navbar.xml to show up and work. I have been looking for this for a long time.

mariannet 03-19-2014 09:00 AM

Maybe this should me removed?
Links in the post are either not working or adds spam..


All times are GMT. The time now is 02:23 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.01466 seconds
  • Memory Usage 1,823KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_php_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete