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 |
#432
|
||||
|
||||
Thanks for the vMoods fix, Logician...
Much appreciated. |
#433
|
|||
|
|||
Any idea as to why this happens with my blogs link?
http://www.maximum-jackson.com/discu...?pg=invalid_pg Thanks mate! |
#434
|
||||
|
||||
Quote:
|
#435
|
|||
|
|||
ooh just realised blogs don't show for guests - i'll take a screenshot and detail more info..
Normal blog link When using logician web template logged in. For some reason, when logged in (so blogs are enabled to show in the navbar) a seperate blog link is displayed and the original turns blue and has two little arrows instead of one. |
#436
|
|||
|
|||
I'm using WT to make a front page for one of my sites which includes latest blog entries. I had no problems creating a query to pull in and truncate the entries and such, but I am having a problem getting the correct BBCodes processed. Right now it's using the built in BBCode processing of WQ, but I need to instead use the Blog BBCode processing because attachments are incorrectly being linked to thread attachments.
I tried to remove the field from the bbcode parse field list and add some php include that I found in view.php to process the bbcodes. My plan was to get that to work and then swap that out for the blog bbcode parsing, but I couldn't get it to work. Here's what I tried in the Query PHP Include (after) Code:
require_once(DIR . '/includes/class_bbcode_alt.php'); $parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); $WQfield[pagetext] = $parser->do_parse($WQfield[pagetext], 1, 1, 1, 1, 1, 1); This didn't work at all. So then I tried this: Code:
require_once(DIR . '/includes/class_bbcode_alt.php'); $parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); $pagetext = $parser->do_parse($WQfield[pagetext], 1, 1, 1, 1, 1, 1); If anyone has the solution for processing blog bbcodes, I'd really appreciate it as I'm not sure how to proceed without REALLY digging deep. Otherwise, if someone can point out what I'm doing wrong here, I'd appreciate it because I can use that to figure out how to swap this code out for blog bbcode processing, which would look something like this: Code:
require_once(DIR . '/includes/class_bbcode_blog.php'); $parser =& new vB_BbCodeParser_Blog($vbulletin, fetch_tag_list()); |
#437
|
||||
|
||||
Quote:
There are 2 occurences of this code in view.php PHP Code:
PHP Code:
|
#438
|
|||
|
|||
Logician,
Thanks for the quick reply! I'm a little confused by your code though. It's the same code that I took out and modified to try to parse a specific field. Your snippet is directly from your view.php and works on the specific field that the loop is working on ($WQfield[$WTWQqbbcodeparsedvalue]) I haven't tried this (mostly because this is production and I can't monkey with it too many times during the day) but I'm assuming that if I plug your code in to the PHP post-query eval, that it won't actually do anything because it doesn't operate on a specific field. I guess I'm wondering how I can change it to work on the specific field from my query, which is called pagetext, and normally shows up as $WQfield[pagetext] I appreciate your help and thank you again for such a great product! |
#439
|
||||
|
||||
Quote:
But if you want your hack to work for a certain field only, this should help: PHP Code:
|
#440
|
|||
|
|||
OK, so I have zilch knowledge of coding. I want to create a separate story-forum, visible for guests and members (guests can only see the forum, no content)
Rather than a subforum on the main paige, I want these stories to show up on their own page, with the forum looks, nav bar etc. If I now install your mod, can I than copy paste the content of the address-bar to that mode and use that template for this story page? And does that create the same forum (with the threads & content) as the original, or only the structure, after which I can give it a name like "story-forum" and post each story as a thread? Is this a feasible option, or do I have to create a page for every story (which seems a lot of work)? Where does the created page show up on the forum? I take it that I can create a link to the story forum just like for example a link to the FAQ-page (which seems to have a forum structure as well)? Is it safe to try this out, or do I wreck the forum in the proces, give my very limited knowledge of HTML, CSS and the likes? |
#441
|
||||
|
||||
Quote:
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|