View Full Version : WebTemplates 2.x: VB Integrated Content Management System
Logician
12-30-2004, 08:26 PM
Hi! Any updates on the vb3 version, BTW? It's the only thing holding me back from upgrading vb2 to 3, right now. Thanks! :-)
Really? :o It is not ready for a vb.org release yet, but it is coded and working ok and I had sent the script to some people who migrated to vb3 long time ago. If you need it for your migration, please let me know your email address and I'll email it to you too. Sorry for the delay of your upgrade! We were discussing this in the thread in my signature.
The Piper
01-10-2005, 06:09 PM
Really? :o It is not ready for a vb.org release yet, but it is coded and working ok and I had sent the script to some people who migrated to vb3 long time ago. If you need it for your migration, please let me know your email address and I'll email it to you too. Sorry for the delay of your upgrade! We were discussing this in the thread in my signature.
Thanks for the reply, Logician. I just PM'd you. :-)
Agester
02-05-2005, 10:06 PM
Any status for the vb3 version of this? Was my fav for the 2.x versions since I had many skins which it automatically adjusted for.
Logician
02-06-2005, 09:01 AM
Any status for the vb3 version of this? Was my fav for the 2.x versions since I had many skins which it automatically adjusted for.
Please give me 1 week for this and if I can't release it, then PM me and I'll send you the script. I plan to release it within this week.
Agester
02-12-2005, 03:46 AM
AWESOME!!! Can't wait :D
Logician
02-16-2005, 08:03 AM
Webtemplates 3.x (for vb.3.x) is released here:
https://vborg.vbsupport.ru/showthread.php?t=76422
lucabosurgi
03-02-2005, 01:00 AM
Thank you Logician!
I really need it to finalise my integration, you can see it next week at www.fmag.net.
I'ts a great, great hack!!!
Logician
03-02-2005, 07:03 AM
Thank you Logician!
I really need it to finalise my integration, you can see it next week at www.fmag.net.
I'ts a great, great hack!!!
np but I guess you are again in the wrong thread lol
Club3G
03-22-2005, 12:25 AM
Fantastic man, great stuff.
digitalSite
01-22-2006, 01:09 PM
Fantastic man, great stuff.
Hi, I'm, back :) I got the hang of using the themes, templates, queries...this hack is too cool :)
I have a question about dateline:
If using the external Javascript option within vB, the display of a thread looks like:
Test Thread ? Today 09:35 AM by Me
My Webtemplates thread looks like:
First Post!... Me 01-15-2006 - 03:59 AM
I am interested to know if it's possbile to use Today, Yesterday, 2 days ago, 5 days ago, instead of the date format. :)
Logician
01-22-2006, 01:17 PM
Hi, I'm, back :) I got the hang of using the themes, templates, queries...this hack is too cool :)
I have a question about dateline:
If using the external Javascript option within vB, the display of a thread looks like:
Test Thread ? Today 09:35 AM by Me
My Webtemplates thread looks like:
First Post!... Me 01-15-2006 - 03:59 AM
I am interested to know if it's possbile to use Today, Yesterday, 2 days ago, 5 days ago, instead of the date format. :)
You are in vb2 thread. ;) (OR is my link in the options wrong?)
It should display the dates in the format you set in your vboptions. So if you are using yesterday/today format, wt dates should be so too.
digitalSite
01-22-2006, 01:38 PM
You are in vb2 thread. ;) (OR is my link in the options wrong?)
It should display the dates in the format you set in your vboptions. So if you are using yesterday/today format, wt dates should be so too.
Ooops! Thanks! lol...I did a search and posted here. :)
Aaron1
09-13-2006, 03:43 PM
Hi Logician, don't know if you will spot this message in such an old thread, but somehow I can't get a webquery to parse the pagetext (post) without any bbcodes.
I have setup a Discography webtemplate with comments inside, you can see here: http://www.housequake.com/view.php?s=&pg=discography
On the right hand side bottom, you can see some comments that shows the bbcode. Example: ([quote]Originally posted by DicxdPlay on 11-09-06 at 16:17 )
This is my webquery:
SELECT username, IF(LENGTH(pagetext) > 130, CONCAT(LEFT(pagetext, 127), "..."), pagetext) AS pagetext
FROM post
WHERE threadid = 51953
ORDER BY dateline
DESC limit 7
And the Queryresult row:
<div align="left" class="cmbx"><div class="cmbxd"><b> $WQfield[username]</b></div><div class="cmbxt">$WQfield[pagetext]</div></div>
I have tried adding to the field [B]BB Code Parsed Field Names various settings. Like 'pagetext', 'bbcodeparse2', 'bbcodeparse', 'message'. Etc. But it keeps showing the bbcode. Any idea why this won't work for me? Do I maybe need to add a phpinclude to make this work perhaps?
Best,
/Aaron
Logician
09-13-2006, 04:04 PM
Hi Logician, don't know if you will spot this message in such an old thread, but somehow I can't get a webquery to parse the pagetext (post) without any bbcodes.
I have setup a Discography webtemplate with comments inside, you can see here: http://www.housequake.com/view.php?s=&pg=discography
On the right hand side bottom, you can see some comments that shows the bbcode. Example: ([quote]Originally posted by DicxdPlay on 11-09-06 at 16:17 )
This is my webquery:
SELECT username, IF(LENGTH(pagetext) > 130, CONCAT(LEFT(pagetext, 127), "..."), pagetext) AS pagetext
FROM post
WHERE threadid = 51953
ORDER BY dateline
DESC limit 7
And the Queryresult row:
<div align="left" class="cmbx"><div class="cmbxd"><b> $WQfield[username]</b></div><div class="cmbxt">$WQfield[pagetext]</div></div>
I have tried adding to the field [B]BB Code Parsed Field Names various settings. Like 'pagetext', 'bbcodeparse2', 'bbcodeparse', 'message'. Etc. But it keeps showing the bbcode. Any idea why this won't work for me? Do I maybe need to add a phpinclude to make this work perhaps?
Best,
/Aaron
You are receiving your text with CONCAT command so only a snippet of it is pulled from datase. If this snippet has a starting bb code tag but missing the ending tag, vbulletin (or WT) can not strip them. bbcodeparse section will work if you get all of the text.
Aaron1
09-13-2006, 04:13 PM
Hi, yes I know, but i tried your suggestion aswell, as you can see now, it's showing the complete message. But remains to keep the bbcode showing. Btw, I didn't know a way to limit the text without that concat function :-)
Aaron1
09-13-2006, 06:48 PM
And what if I use the Query PHPInclude Code field, and removed the bbcode tags manualy like this for example?
$WQfield[pagetext] = str_replace("[quote]", "", $WQfield[pagetext]);
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.