Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons

Reply
 
Thread Tools
SmEdD's Portal Details »»
SmEdD's Portal
Version: 1.00, by SmEdD SmEdD is offline
Developer Last Online: Jun 2021 Show Printable Version Email this Page

Category: Portal Software - Version: 3.6.0 Rating:
Released: 08-08-2006 Last Update: 08-08-2006 Installs: 59
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

Ok I did this in a few hours since I get asked so much about my scripts on other sites so don't expect much. It is a very lite portal but can be easily expanded and customized to your likings!

Sorry if you are expecting the normal rich feature portal, I just don't have the time to make one.

Maybe in the future I will have some more time to spend on this and make it better

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #52  
Old 09-20-2007, 03:47 PM
MjrGaelic MjrGaelic is offline
 
Join Date: Oct 2004
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm typically a lurker and don't post much. but I had to say thanks for this script. Since phpBB became crap I lost fetchall which I LOVED.

This script is exactly what I was looking for giving me the flexibility to bring news to the portal but otherwise do what I want with the portal.

I've only been working on my new site (re-vamp) for a couple days and the only thing I'm lost on is adding additional content pages. Do I just create new templates and then call the templates out of the index? (sorry, I'm new to working on the guts in VB).

Thank you for this script and the time you vested into it.
Reply With Quote
  #53  
Old 09-20-2007, 05:37 PM
dooch dooch is offline
 
Join Date: Dec 2005
Posts: 126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

rename the index.php and alter the templates it calls.

so yes, create new templates and creatre a new index and call the new templates from the new php file.

This mod is a good mod for creating custom pages.

Look at the way the index pulls templates and copy the way it does for new pages.
Reply With Quote
  #54  
Old 09-21-2007, 01:17 AM
HTMMinion HTMMinion is offline
 
Join Date: May 2006
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks dooch, you're right it does make adding content pages a snap.

Thanks for the great portal SmEdD ! :up:
Reply With Quote
  #55  
Old 09-22-2007, 05:40 AM
MjrGaelic MjrGaelic is offline
 
Join Date: Oct 2004
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yea, that part was no problem. But now I have a bunch of individual pages where I'd rather just have "index.php?page=pagename" which would call to the template file.
Reply With Quote
  #56  
Old 12-08-2007, 12:17 PM
Brandje Brandje is offline
 
Join Date: Nov 2007
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great mod, thanx alot, I do have a few questions tho:

-The news block does not show up, am i missing somthing? I did add the forum id's, ran the cron, but still nothing.

-Also I would like to know how to create a latest image block as seen on the sample sites.

Thanks in advance
Reply With Quote
  #57  
Old 05-08-2008, 05:08 AM
Goomzee Goomzee is offline
 
Join Date: Apr 2008
Location: Philippines
Posts: 588
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this Portal is work with 3.7x
Reply With Quote
  #58  
Old 06-16-2008, 01:20 AM
|Jordan|'s Avatar
|Jordan| |Jordan| is offline
 
Join Date: Nov 2004
Posts: 479
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Doesn't completely work in 3.7.1 PL1 for me. The news displays, but BBCode doesn't parse (eg. links).
Reply With Quote
  #59  
Old 08-09-2009, 01:42 AM
D-Manthing D-Manthing is offline
 
Join Date: Aug 2008
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MjrGaelic View Post
Yea, that part was no problem. But now I have a bunch of individual pages where I'd rather just have "index.php?page=pagename" which would call to the template file.


edit index.php - replace:

PHP Code:
eval('print_output("' fetch_template('smedd_index') . '");');
?> 
with

PHP Code:
if ($_REQUEST['do'] == 'page1')
{
    eval(
'print_output("' fetch_template('page1') . '");');
}
else
{
    eval(
'print_output("' fetch_template('smedd_index') . '");');
}
?> 
in admin cpanel create new template called page1 and put this as code:

PHP Code:
$stylevar[htmldoctype]
<
html dir="$stylevar[textdirection]lang="$stylevar[languagecode]">
<
head>
    
$headinclude
    
<title>$vboptions[hometitle]</title>
</
head>
<
body>
$header
$navbar
<br />

<
table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
  <
tr valign="top">
    <
td>$left_side</td>
<
td>&nbsp;&nbsp;</td>

    <
td width="100%">


<
table align="center" border="0" cellpadding="$stylevar[cellpadding]cellspacing="$stylevar[cellspacing]class="tborder" width="100%">
  <
tr>
    <
td align="center" class="tcat">



<
strong>TITLE GOES HERE</strong></td>



  </
tr>
  <
tr>
    <
td class="alt1">


        
INSERT YOUR CODE HERE



    
</td>
  </
tr>
</
table>

<
br />

</
td>
    <
td>&nbsp;&nbsp;</td>

    
  </
tr>
</
table>

$footer
</body>
</
html
finally add link to this page in sidebar template (left or right):

PHP Code:
<a href="?do=page1">&nbsp;&raquo;LINK TITLE</a><br /> 
Reply With Quote
Reply

Thread Tools

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 06:58 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.04259 seconds
  • Memory Usage 2,299KB
  • Queries Executed 23 (?)
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
  • (4)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (8)postbit
  • (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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete