The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
WebTemplates 3.x: VB Integrated Content Management System Details »» | |||||||||||||||||||||||||||
WebTemplates 3.x: VB Integrated Content Management System
Developer Last Online: Nov 2023
After a long wait, here is the new 3.x version of Webtemplates for vB 3.x boards. First a short introduction for users who are not familiar with the old version:
This hack is a vBulletin integrated content management system. Term "Webtemplates" stands for dynamic webpages that reside in your MYSQL database and administered inside your vbulletin admin control panel. But they are more than regular site pages because they can automatically inherit visual design of your forum, can apply permissions according to your vb usergroup settings, can keep track of page counts, last visitorname/visit time, display page browsers in the page itself and in your whoisonline page etc. So basically webtemplates are dynamic web pages of your site which are powered by vbulletin. Or more simply putting, with this hack you can create regular HTML pages in your vB admin cp and these pages will be integrated into your vbulletin database about permissions, styles etc. WEBTEMPLATES 3.x FEATURES:
If you use the hack, clicking here will make sure you'll know about updates&bug fixes. It will also help me understand how many people is using the hack so please click the install button if you use it. Thank you.. Version Updates: 16.Feb.2005 - > Version 3.01 * Hack released. 3.5 Version : https://vborg.vbsupport.ru/showthread.php?t=103076 Show Your Support
|
Comments |
#102
|
||||
|
||||
hmm.. nevermind. The link pops up in a different window somehow..
|
#103
|
||||
|
||||
How search engine friendly is this? Let's say you write articles or tutorials using this template system. Would this get spidered? I know lots of text the regular threads in vb will get picked up, but I am not sure if a full blown article in webtemplates will get spidered. Just wondering how SEO friendly this is.
Thanks very much. |
#104
|
||||
|
||||
Quote:
|
#105
|
||||
|
||||
Logician are you considering improving this hack? It is definetely my favorite out of all hacks released here. If you were, I have some ideas maybe to help you (just suggestions)..
a.) If there is a way, to parse pages as text and html? For example, on one of my pages I wanted to create a table, but also use the WYSIWYG editor below the table. This would be cool if possible. b.) Polls in pages would also be sick c.) Pages able to be searched from forum search I know that coding is a hard job, because I am trying to learn PHP right now, and I'm stuck on like page 4 lol, so if you've got other priorities, I know the community and I would understand. Thanks for an awesome hack |
#106
|
||||
|
||||
Quote:
I agree that this hack has a lot of potential to be improved and I'd like to improve it. However my time that I can spend for my vb.org hacks are very limited and unfortunately I don't see a chance to improve this hack in the near future. As a matter of fact it even took me a year to port it to VB3 and I have other pending hacks to port before concentrating into webtemplates. Sorry about it. Quote:
PHP Code:
PHP Code:
|
#107
|
|||
|
|||
Outstanding work. No question.
In testing, there is no conflict of any kind with regard to using other portal software such as VBA. If you get creative with this add-on, there's a lot you can do with it. Example- you could use this for articles and such; with a more customizable format. You can index them by creating a new "forum" called "Articles" and then make the webtemplates into links. One suggestion I would add is if you have a board with multiple stylesets, you might also want to install ZeroTolerance's "Copy Templates from one style to another" hack. Then you can copy the webtemplates required when this is first installed to all your styles very quickly. Anyway, this is great work you have done here Logician. |
#108
|
||||
|
||||
How do I use a webquery to query two different tables?
I want to include the forum's name in the last post header. I tried: SELECT t.threadid, t.title, t.firstpostid, t.lastpost, t.replycount, t.postusername, t.postuserid, t.lastposter, t.dateline, t.views, p.pagetext FROM " . TABLE_PREFIX . "thread t LEFT JOIN " . TABLE_PREFIX . "post p ON p.postid = t.firstpostid WHERE t.forumid In(108,109) AND t.open = '1' AND t.visible = '1' ORDER BY t.dateline DESC LIMIT 0 , 10 SELECT forumid, title, description, displayorder FROM " . TABLE_PREFIX . "forum WHERE forumid In(108,109) ORDER BY title ASC LIMIT 100 But it did not work. And even if I do get both query's to work when I output them in the Query Results Row both Query's assign a value to the $WQfield[title] variable. Any ideas how to get both query's to work and assign them the "title" variable to different names? Thanks in advance, this is a great hack! |
#109
|
||||
|
||||
Quote:
SELECT t.threadid, t.title, t.firstpostid, t.lastpost, f.title, t.replycount, t.postusername, t.postuserid, t.lastposter, t.dateline, t.views, p.pagetext FROM thread t LEFT JOIN post p ON p.postid = t.firstpostid LEFT JOIN forum f ON f.forumid = t.forumidpostid WHERE t.forumid IN ( 108, 109 ) AND t.open = '1' AND t.visible = '1' ORDER BY t.dateline DESC LIMIT 0 , 10 |
#110
|
||||
|
||||
Quote:
So to pull the info can I just use $WQfield[t.title] and $WQfield[f.title] ? |
#111
|
||||
|
||||
Quote:
SELECT t.threadid, t.title, t.firstpostid, t.lastpost, f.title as forumtitle, t.replycount, t.postusername, t.postuserid, t.lastposter, t.dateline, t.views, p.pagetext FROM thread t LEFT JOIN post p ON p.postid = t.firstpostid LEFT JOIN forum f ON f.forumid = t.forumidpostid WHERE t.forumid IN ( 108, 109 ) AND t.open = '1' AND t.visible = '1' ORDER BY t.dateline DESC LIMIT 0 , 10 now $WQfield[title] gives you thread title and $WQfield[forumtitle] gives you forum title. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|