The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
WebTemplates 3.7.x: VB Integrated CMS (Content Management System) Details »» | |||||||||||||||||||||||||||
WebTemplates 3.7.x: VB Integrated CMS (Content Management System)
Developer Last Online: Nov 2023
(This hack is for vb version 3.7.x & 3.8.x ONLY. For vb 3.6.x, 3.5.x, 3.0.x and 2.x see my profile for relevant threads.)
"WebTemplates" is a vBulletin integrated Content Management System which allows you to create vb integrated "HTML" pages in your vb admin cp very easily. The pages can inherit your vbulletin skin/style, can recognize logged-in user, can be applied permissions per user or usergroup basis, can keep visit logs, hit counts and do many more. VB4 version Update (9.9.2010): Please find 4.x version of WebTemplates4.x in its own thread. WEBTEMPLATES 3.7.x BASIC FEATURES:
(Some 3.5 and some are 3.0 versions but WebTemplate look and feel didn't change much so both will give you the idea.) http://www.worldwideknights.com/view_mission.htm http://www.theadminzone.com/forums/view.php?pg=aboutus http://www.hystersisters.com/vb2/view_guidelines.htm http://www.worldwideknights.com/view_info.htm http://www.hystersisters.com/vb2/view_books.htm http://www.worldwideknights.com/view_spread.htm http://www3.fertilethoughts.com/forums/view.php?pg=acronyms http://www.makeuptalk.com/forums/view.php?pg=makeuptalk-newsletter http://www.bklab.com (entire site is designed with Webtemplates only) (Actually this hack is one of the most popular vb hacks so it is used by hundreds -if not thousands- of vbulletin sites and you can easily find them if you go to google and search "Logician's WebTemplates" WITH quotation marks) 3.5 version Admin CP screenshot attached to this post. 3.0.x screenshots (here and here) also still applies for this version. 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.. About this 3.7.xx Version: This 3.7.xx version is same as previous 3.6.x version. 3.6.x version was already working in vbulletin 3.7.x except a few minor bugs and these bugs are fixed in this version to make it dedicated solely to vbulletin 3.7.x. Please see "what's new" in the next post for more details. Version Updates: 29.July.2008 - > Version 3.7.00 * Hack 3.7.00 is released. Show Your Support
|
2 благодарности(ей) от: | ||
Xexiu |
Comments |
#242
|
|||
|
|||
This is the best mod/hack/addon (or whatever we call it) i've seen on vBulletin. Everything depands on what you can imagine. And this mod makes everything much easier for who dont know lot about php or other coding language.
So thank you very much Logician for this great mod. You simply rock.... I also need an idea about something i would like to do. Through "$WQ_last10threadfromforum2" i would like to list all the threads in a certain category. And i've changed the limit to 500. So it lists all the threads in ASC without a problem. But i would like to learn if it is possible to make this page with a letterbar (same as vbulletin memberlist.php) ? So users could find the threads much easier. Or even listing the threads like : threads starts with letter A or B.... would be great. Is that possible ? Anyone can give me an idea about how to do that... Thanks in advance... |
#243
|
||||
|
||||
Quote:
|
#244
|
|||
|
|||
Logician, i dont know how to thank you for your very kind relation and very quick response... You are my hero....
I really wish that i could send more and i know that its nothing but i've send you a donation through paypal. That was the amount in my paypal account. |
#245
|
|||
|
|||
Is it possible to remove the first row of the alphabetical table (image2.png) so i can show just the letters seperate as same as on the memberlist.php ? (image4.png)
And is it also possible to add the numeric option which we can then list the threads start with the humbers. I've added "#" but i guess its not working. Thanks again for this wonderful mod. |
#246
|
||||
|
||||
Quote:
2- Edit webquery like this: SELECT threadid, title, postusername,postuserid,dateline FROM " . TABLE_PREFIX . "thread WHERE sticky=0 AND visible=1 AND forumid=3 $letterquery ORDER BY dateline DESC LIMIT 500 Query PHPInclude Code (Before) : like this: $myletter1 = substr($myletter, 0, 1); if ($myletter == '_') { $letterquery = "AND (title LIKE '0%' OR title LIKE '1%' OR title LIKE '2%' OR title LIKE '3%' OR title LIKE '4%' OR title LIKE '5%' OR title LIKE '6%' OR title LIKE '7%' OR title LIKE '8%' OR title LIKE '9%') "; } else { $letterquery = "AND title LIKE '$myletter1%'"; } and then use <a href='view.php?pg=alphabeticalthreads&myletter=_'> #</a> for linking numbered threads. |
#247
|
|||
|
|||
Would "thank you" be enough for all your helps ?
Now i can use my imagination to create very useful and nice pages with your wonderful mod. Thank you very very much again Logician... |
#248
|
|||
|
|||
No it's not. Click on the link in the first post to nominate WT for Mod of the Month
|
#249
|
|||
|
|||
I've already done that Ohiosweetheart
|
#250
|
|||
|
|||
Hopefully it will win one of these days.
|
#251
|
|||
|
|||
With "zero" knowledge of php, i did my best to solve the problems. And actually i did solve most of my problems through google them or search for the possible answers through vb.org
But i still have some problems which i can not solve. Can not find the right variable for the forum title : When i list the threads of forumid=2, i can sort them through the letterbar. In the current letterbar, there are "Title", "Author" and "Date" sections. I did add another section called "Forum" which will show the forum title of the thread which it belongs to. Code:
<td class="$alternate" WIDTH="25%" VALIGN="TOP" NOWRAP><div class="smallfont">$forum[forumtitle]</div></td> I would like to make a "movie list" for my forum. Due to i have lot of categories such as "Dvd Movie Reviews", "HD-Bluray Movie Reviews", "TV Series Reviews" etc.., i tried to make css navigation menu as shown on below image. I used "Site Information Pages Template" for this movie list but it did not work due to a reason i do not even remember right now. I feel like my head will blow soon due to those complicated, puzzling, meaningless php codes. ***Above picture is just an example to give an idea about what i would like to do Is it possible to pull threads from different forums at same time ? Code:
SELECT threadid, title, postusername,postuserid,dateline FROM " . TABLE_PREFIX . "thread WHERE sticky=0 AND visible=1 AND forumid=103 $letterquery ORDER BY dateline DESC LIMIT 500 Code:
forumid=103 or forumid=104 or forumid=105 Code:
forumid=103 AND forumid=104 AND forumid=105 |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|