The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
quote from a couple of posts above.
Quote:
|
#12
|
||||
|
||||
Quote:
Quote:
|
#13
|
||||
|
||||
Quote:
I recommend you use vba cmps. You can set it outside your forum, you can make as many pages as you want. It seems as though it will take far more effort to code your own thing. |
#14
|
||||
|
||||
I understand.
What I would like to see is the means to have any php page with the proper lines be able to fit within the vb3 format. For example if you were to tell me EXACTLY what to put in the php page to make it work within VB3, then I could add my custom stuff to the middle to make my stuff work. Eg. Page code would be as follows ------------------------ vB3 header code My text vB3 footer code. ------------------------ Then everything I add to the "My text" area would atomatically be put between the vB3 header and footer. |
#15
|
||||
|
||||
A good example of what I have so far can be found at the following url.
http://www.dungeonkeepersdomain.com/forums/codetest.php I have attached what I would like the header and footer to look like. These images are screen captures of what the primary site that is running the vb3 software looks like. It is obvious that I am close, but it is not all there yet. |
#16
|
||||
|
||||
You're missing the $headinclude
Either add that in, or copy and paste from the source of a vbulletin page. It's the style definition. That's what's missing. |
#17
|
||||
|
||||
Cool. So my code should look like this.
<?php include("./global.php"); eval('$headinclude = "' . fetch_template('headinclude') . '";'); echo $headinclude; eval('$header = "' . fetch_template('header') . '";'); echo $header; eval('$navbar = "' . fetch_template('navbar') . '";'); echo $navbar; echo "<center><table border=1 cellpadding=10 cellspacing=0><tr><td align=center>I want my own custom text or program to be in this spot</td></tr></table></center>"; eval('$footer = "' . fetch_template('footer') . '";'); echo $footer; ?> |
#18
|
||||
|
||||
OK, now how do I make this new page accept vb3 phrases?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|