Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 12-16-2010, 11:50 PM
GeorgeB85 GeorgeB85 is offline
 
Join Date: Nov 2008
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Is there a mod that can do this?

Does anyone know if there is a mod that can let me do the 2 things circled in the attached pictures. I like how it shows on vb.org and would like, if possible, to implement it on my forum. Thanks.
Attached Images
File Type: jpg vb1.jpg (132.5 KB, 0 views)
File Type: jpg vb2.jpg (95.6 KB, 0 views)
Reply With Quote
  #2  
Old 12-17-2010, 12:49 AM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

George,

With vBulletin 4 you can promote post to articles for the CMS, if you have the forum only version you can run vBadvanced and have it show the most recent threads. For the links there in the footer you can code those in by hand or simply use something like: https://vborg.vbsupport.ru/showthread.php?t=228527 and leave out the image.
Reply With Quote
  #3  
Old 12-17-2010, 01:19 AM
GeorgeB85 GeorgeB85 is offline
 
Join Date: Nov 2008
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheLastSuperman View Post
George,

With vBulletin 4 you can promote post to articles for the CMS, if you have the forum only version you can run vBadvanced and have it show the most recent threads. For the links there in the footer you can code those in by hand or simply use something like: https://vborg.vbsupport.ru/showthread.php?t=228527 and leave out the image.

I have the suite. I didn't realize that VB.org had it set up, like promoting posts to articles. I thought it was a special announcements mod or something.

In regards to the footer links, thanks for the link. Will upload that tonight for sure and test it out.

BTW, in case you didn't see my post in the other thread, congrats on the promotion. You have helped me in the past with my limited knowledge lol and has always been good advice. Take care.

--------------- Added [DATE]1292556902[/DATE] at [TIME]1292556902[/TIME] ---------------

This mod https://vborg.vbsupport.ru/showthread.php?t=228527 works in regards to placing the links at the bottom, but not showing it like how vb.org has theirs set up. Any way to make it look like vb.org does?
Reply With Quote
  #4  
Old 12-17-2010, 04:49 AM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by GeorgeB85 View Post
I have the suite. I didn't realize that VB.org had it set up, like promoting posts to articles. I thought it was a special announcements mod or something.

In regards to the footer links, thanks for the link. Will upload that tonight for sure and test it out.

BTW, in case you didn't see my post in the other thread, congrats on the promotion. You have helped me in the past with my limited knowledge lol and has always been good advice. Take care.

--------------- Added [DATE]1292556902[/DATE] at [TIME]1292556902[/TIME] ---------------

This mod https://vborg.vbsupport.ru/showthread.php?t=228527 works in regards to placing the links at the bottom, but not showing it like how vb.org has theirs set up. Any way to make it look like vb.org does?
To be honest I'm not sure how it's setup here I do know with version 4 though you can promote posts to articles so I replied with that knowledge, there's also many modifications on here you should check out as there could be something similar to what you want that might require simple editing so be sure to have a look when you have time. I'm glad to hear I've been helpful it's always nice to hear that and remember to pay it forward when you have the chance .

As for the footer, you could do that with some simple css and html added to the footer template.

Reference the page source here for an example:

Code:
<table class="tborder" cellpadding="4" cellspacing="1" width="100%" border="0" align="center" style="table-layout:fixed">
  <tr>
    <td class="tcat">New To Site?</td>
    <td class="tcat">Need Help?</td>
  </tr>
  <tr>
    <td class="alt1">

    <ul>
        <li><a href="info.php?do=about">About vBulletin.org</a></li>
        
        
        <li><a href="info.php?do=unlicensed">Are you "Showing up as unlicensed?"</a></li>	
	
        <li><a href="info.php?do=rules">Review Our Site Rules</a></li>	
        <li><a href="info.php?do=botm">What is Board Of The Month (BOTM)?</a></li>	
        <li><a href="info.php?do=motm">What is Modification Of The Month (MOTM)?</a></li>	
	
	<li><a href="info.php?do=staff">Meet Our Staff</a></li>
	
    </ul>

    </td>
    <td class="alt1">
    <ul>
	<li><a href="forumdisplay.php?do=markread" rel="nofollow">Mark Forums Read</a></li>
        <li><a href="showthread.php?t=113792">Do Your Research Before Hiring!</a></li>	
        <li><a href="info.php?do=sitemap">Site Map</a></li>	
        
        <li><a href="login.php?do=lostpw">Did you forget your password?</a></li>
        <li><a href="login.php?do=logout&amp;logouthash=e161aa215b5b0b5a9bac5bfd475e248bd1fa8f3a"  onclick="return log_out('Are you sure you want to log out?')">Log Out TheLastSuperman</a></li>

        
	
    </ul>
    </td>
  </tr>
</table>
Although I would redo it with all <div instead of <table and <td but it's really that simple a template edit can do that, in turn a mod can render the template if you want to go that far.
Reply With Quote
  #5  
Old 12-20-2010, 01:56 AM
GeorgeB85 GeorgeB85 is offline
 
Join Date: Nov 2008
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I tried vbadvanced today to get the posts to show how they do here, when you first visit the site, but it just the threads, not posts. Anyway, to make it display the recent posts, like vb.org does?
Reply With Quote
  #6  
Old 12-20-2010, 02:38 AM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by GeorgeB85 View Post
I tried vbadvanced today to get the posts to show how they do here, when you first visit the site, but it just the threads, not posts. Anyway, to make it display the recent posts, like vb.org does?
It can be done however let me do some more browsing and get back to you, I might run across something that does it for you just like I have for the "Footer Info Panel".

Here is a modification by Princeton for the footer links: https://vborg.vbsupport.ru/showthread.php?t=149651 however it's vB3 and will require a little bit of updating however onve that's done it will work just fine .
Reply With Quote
  #7  
Old 12-21-2010, 12:57 PM
GeorgeB85 GeorgeB85 is offline
 
Join Date: Nov 2008
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheLastSuperman View Post
It can be done however let me do some more browsing and get back to you, I might run across something that does it for you just like I have for the "Footer Info Panel".

Here is a modification by Princeton for the footer links: https://vborg.vbsupport.ru/showthread.php?t=149651 however it's vB3 and will require a little bit of updating however onve that's done it will work just fine .
Any luck on finding something that can make the post/threads look like the announcement ones on vbulletin.org?
Reply With Quote
  #8  
Old 12-26-2010, 02:21 AM
GeorgeB85 GeorgeB85 is offline
 
Join Date: Nov 2008
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bump
Reply With Quote
  #9  
Old 12-27-2010, 12:37 AM
setishock setishock is offline
 
Join Date: Feb 2008
Location: Houma, La.
Posts: 1,177
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

They are running 3.6.12 here. I read a while back that page you're asking about is custom coded. And they are not handing out that code.
vBadvanced has a lot of modules. I used to use it. I had a module up for posts and threads. Go back to the set up page and look through the list of modules. Then in the vBad set up screen set it like you want it. You have to work inside the settings to get it like you want it. Some tricks require you to mod the templates. Their forum has a lot of good help. Ask for help on vbad over there.
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 02:08 AM.


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.05433 seconds
  • Memory Usage 2,267KB
  • 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
  • (1)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (2)postbit_attachment
  • (9)postbit_onlinestatus
  • (9)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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete