vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Portal Software - WebTemplates 3.7.x: VB Integrated CMS (Content Management System) (https://vborg.vbsupport.ru/showthread.php?t=186644)

PossumX 12-01-2009 08:34 AM

Quote:

Originally Posted by Logician (Post 1923355)
I can't promise when but yes, eventually it will be ported to vb4.

No need for a promise. The fact that you're planning to is great, as this is one of those excellent "can't live without" mods. Thank you very much for your response.

CLUB AMPLE 12-02-2009 05:15 AM

Quote:

Originally Posted by Logician (Post 1923355)
I can't promise when but yes, eventually it will be ported to vb4.

Great to hear... I will be first in line with a donation when its over to vb4

Definitely a Mod of the year candidate!

Neutral Singh 12-31-2009 11:56 AM

Gr8 News! that this monster may be ported over to vB4. :)

Budget101 01-03-2010 05:20 PM

Are there directions for Uninstalling this mod?? I used the "uninstall" through the Plugin Manager & removed the files from the server, but there are still tables that didn't not uninstall.

Logician 01-04-2010 07:06 AM

Quote:

Originally Posted by Budget101 (Post 1946156)
Are there directions for Uninstalling this mod?? I used the "uninstall" through the Plugin Manager & removed the files from the server, but there are still tables that didn't not uninstall.

Explained in FAQ

Shanj 01-09-2010 05:36 PM

Logician sorry I didn't realise there are two mod forums and I posted to the older one.

I found the instructions for redirecting user login to a Logician template.
How does this work if there are multiple template pages for different usergroups or different users?

Thank you.

Logician 01-10-2010 09:09 AM

Quote:

Originally Posted by Shanj (Post 1951292)
I found the instructions for redirecting user login to a Logician template.
How does this work if there are multiple template pages for different usergroups or different users?

Can you please eloborate on the solution you implemented? What exactly did you do? (link to a solution post or referring the section in manual is ok)

Regarding your pm, please check here.

Shanj 01-10-2010 03:35 PM

Dear Logician

Thank you so much for fast reply.

Pages set to usergroup I knew and have used very happily.
Big discovery just now is page targeted to certain individual users PLUS web editing! you amazing guy- I didn't know all that.

I would dearly love to have users go to an entry page targeted to either their usergroup (mostly) or for a few, targeted individually.
Now you do give a way to make a Logician page replace the forum homepage using .htaccess and that means using a URL for the logon entry like
http://www.yourdomain.com/forum/view...=your_template

How do I deal with it if my usergroup pages are

http://www.yourdomain.com/forum/view...your_template1
http://www.yourdomain.com/forum/view...your_template2
http://www.yourdomain.com/forum/view...your_template3

I suppose the actual login could go to
http://www.yourdomain.com/forum/view...=your_template

which might have a redirect?

(I'm not a coder but I can tweak under instruction)

Shanj

Logician 01-11-2010 01:29 PM

Quote:

Originally Posted by Shanj (Post 1952034)
Dear Logician

Thank you so much for fast reply.

Pages set to usergroup I knew and have used very happily.
Big discovery just now is page targeted to certain individual users PLUS web editing! you amazing guy- I didn't know all that.

I would dearly love to have users go to an entry page targeted to either their usergroup (mostly) or for a few, targeted individually.
Now you do give a way to make a Logician page replace the forum homepage using .htaccess and that means using a URL for the logon entry like
http://www.yourdomain.com/forum/view...=your_template

How do I deal with it if my usergroup pages are

http://www.yourdomain.com/forum/view...your_template1
http://www.yourdomain.com/forum/view...your_template2
http://www.yourdomain.com/forum/view...your_template3

I suppose the actual login could go to
http://www.yourdomain.com/forum/view...=your_template

which might have a redirect?

(I'm not a coder but I can tweak under instruction)

Shanj

So if I understand you correctly, you want to take user to its usergroup's specific webtemplate when he logged in, am I correct?

With some code edits I can think this is doable but wouldn't it change the entire vb login system's logic for bad? As you know vb login system is kind of intelligent and it takes you to the previous page you were in when you received "no permission page" when you are not logged in. Eg. when you click reply a thread as a guest and receive no permission page, you can enter your u/p there and after login you are taken directly to the "reply this thread" page and resume your action.

And since webtemplates do not have a seperate login system and basically use default vb login system, hacking the login system to give an forceful entry page would mean breaking this function of the login. Don't you think?

(BTW irrelevant but you don't have to create a different webtemplate for each usergroup if modifications are minor. You can just create one webtemplate for all and then use conditionals to display different content to different usergroups)

Shanj 01-11-2010 04:38 PM

Quote:

Originally Posted by Logician (Post 1952736)
So if I understand you correctly, you want to take user to its usergroup's specific webtemplate when he logged in, am I correct?

Exactly.

Quote:

Originally Posted by Logician (Post 1952736)
With some code edits I can think this is doable ... And since webtemplates do not have a seperate login system and basically use default vb login system, hacking the login system to give an forceful entry page would mean breaking this function of the login. Don't you think?

I don't have guests, only a small board for members only.
They all belong to usergroups 1, 2, 3, or 4.

But I don't know about the login system. You do. So I accept your advice.

Quote:

Originally Posted by Logician (Post 1952736)
(BTW irrelevant but you don't have to create a different webtemplate for each usergroup if modifications are minor. You can just create one webtemplate for all and then use conditionals to display different content to different usergroups)

Depends on what is "minor."
This COULD be exactly what I need.

The differences are the same section of the page has different info. per usergroup.
For example a weekly timetable which is displayed as a table. That is different per usergroup though the layout is the same. Cell text content different and bgcolor different.
One group has a search form that sends data but that is also in a table.

Perhaps if you tell me the limitations on "minor modifications" I could understand what is possible, and do my design to fit the limitations.

I don't know how to do conditionals. But if you tell me where to look I will learn it.


Thank you Logician. You're great.

Logician 01-11-2010 07:56 PM

Quote:

Originally Posted by Shanj (Post 1952886)
Perhaps if you tell me the limitations on "minor modifications" I could understand what is possible, and do my design to fit the limitations.

I don't know how to do conditionals. But if you tell me where to look I will learn it.

When you use seperate webtemplates as you do now, you have priviledge to set different options for each webtemplates as you enter them in "edit webtemplate" page.

For instance webtemplate A can use theme A, webtemplate B can be BBcode parsed, webtemplate C can be banned to user C etc.

However when you use single webtemplate for all usergroups obviously you are bound with the settings you entered in that webtemplate so you can't set them seperately for each usergroup.

But if this is not your concern and you are just interested in displaying a different content in that very webtemplate to different usergroups, it is possible via "conditionals". You can see the usage of one conditional in builtin webtemplate named "test". It appears with "hidden text" remark when you login as admin.

Webtemplates inherit the default vb template conditionals syntax so you can use if else conditions just like you use them in your styles:
PHP Code:

<if condition="$bbuserinfo[usergroupid] == 6">
show this text to administrator
</if>
<if 
condition="$bbuserinfo[usergroupid] == 2">
show this text to registered member
</if> 

etc.

And more info can be found in vb's manual about conditionals.

Shanj 01-12-2010 03:21 PM

Thank you for the lovely clear explanation. I have read your documentation again. Then I copied the php from the test page, switched it to html, and it WORKS! HURRAY! I have conditional view pages!

But my first page is using the usergroup tickbox options in admin rather than a conditional php in the webtemplate. It looks to me like that is safer as this is a shared edit page with my mods who might accidentally mess the php conditional at top or bottom.
Does that sound right?

WEB EDITOR .....................................
There was a small problem with the webeditor.
The link already on the page generates a double URL!

http://www.mysite.com/xyz/www.mysite...=edit&pg=testa

I placed a bbcode [URL] link at the top to the editor and it's fine.
I just wondered if you can think of why the code supplied is doing this?
It's OK in View Source, just one URL.

I do have a slightly nonstandard filepath for my vbulletin - it's in directory xyz as you see in the URL. Perhaps this is difficult for your editor script command?

This is great. I'll work on the conditional page to replace forumhome later.

Thank you for everything. This is a very exciting mod. It does powerful things AND the instructions you give are extremely good.
A lot of coders do powerful things but their instructions are not clear. That makes their work useless. I understand why - instructions are my profession and it's a different brain training to code. So someone like you who does both code and instructions well, is rare - an unusual treasure.

Logician 01-12-2010 03:45 PM

Quote:

Originally Posted by Shanj (Post 1953619)
WEB EDITOR .....................................
There was a small problem with the webeditor.
The link already on the page generates a double URL!

http://www.mysite.com/xyz/www.mysite...=edit&pg=testa

I placed a bbcode [url] link at the top to the editor and it's fine.
I just wondered if you can think of why the code supplied is doing this?
It's OK in View Source, just one URL.

You just entered "$WT_Editor_link" in the webtemplate right? This variable is suppose to give you the correct editor link for this page. If you appended it like "http://www.mysite.com/$WT_Editor_link" please dont do it. Just use "$WT_Editor_link" as is. I hope this will fix your problem.

And thanks for kind words! :)

Shanj 01-12-2010 05:16 PM

"$WT_Editor_link"

No I used http://<a href="http://www.mysite.co...g=testt <br />

This link works fine.


It was the little font link that appeared automatically via your script that gave the funny double result.
It's not your code obviously as the View Source link shows it properly.
Probably something on my site.
Unless you can think of something it might be I'll just go on putting the link in manually.

You deserve nice words. I meant it you're very very good.

Wilfred1 01-14-2010 04:45 AM

I have set up my chat room on a web templates page and is working well. The only thing I would like to do now is to include a list of usernames that are on the chat room page (i.e. chatting in the chat room) in the "What's Going On" box at the bottom of the forums home page.

Is there any way that I can adapt the WebTemplates_NowBrowsing template that has the variable $activeusers to specify a page or is there any other way to achieve this with this great mod?

Thanks for any advice.

Logician 01-14-2010 06:28 AM

Quote:

Originally Posted by Wilfred1 (Post 1955157)
I have set up my chat room on a web templates page and is working well. The only thing I would like to do now is to include a list of usernames that are on the chat room page (i.e. chatting in the chat room) in the "What's Going On" box at the bottom of the forums home page.

Is there any way that I can adapt the WebTemplates_NowBrowsing template that has the variable $activeusers to specify a page or is there any other way to achieve this with this great mod?

Thanks for any advice.

Well, unfortunately there is no very easy way to do this but if you are familiar with sql queries, you can create a new webtemplate which displays only a single webquery result in it and then in this webquery you can adopt this:

PHP Code:

                                            SELECT user.usernameuser.usergroupiduser.membergroupids,
                                            
session.useridsession.inthreadsession.lastactivity,
                                            IF(
user.displaygroupid 0user.usergroupiduser.displaygroupid) AS displaygroupid,
                                            IF(
user.options " . $vbulletin->bf_misc_useroptions['invisible'] . "10) AS invisible
                                            FROM 
" . TABLE_PREFIX . "session AS session
                                            LEFT JOIN 
" . TABLE_PREFIX . "user AS user ON(user.userid session.userid)
                                            
WHERE 
                                            session
.lastactivity $datecut AND  (session.location LIKE '%".$Search_Word_for_session_TB."?%' AND session.location LIKE '".$idSQL."') OR  (session.location LIKE '%".$Search_Word_for_session_TBURL."%')
                                            
ORDER BY session.lastactivity DESC 

which is the default query to return a specific webtemplate's visitors.

Then you can put this webtemplate in a iframe to display in any place you like.

I'm sorry it is not very easy and I couldn't find time to do it for you but I at least tried to show you the correct route.

Shanj 01-14-2010 12:20 PM

Logician dear man

Plese advise about images in the templates.
Obviously I can hard code with a full site link
http://www.mysite.com/pics/imagefile.jpg

But isn't it better for loading to use relative links?
If I knew where the webtemplate pages are saved I could create a subdirectory in that directory for my pics. Then my image links could be
../pics/imagefile.jpg
which is quicker neater coding.

If you tell me I'm making an unnecessary fuss and just using a full site URL
http://www.mysite.com/pics/imagefile.jpg
then I will do that.

Logician 01-14-2010 01:12 PM

Quote:

Originally Posted by Shanj (Post 1955413)
Logician dear man

Plese advise about images in the templates.
Obviously I can hard code with a full site link
http://www.mysite.com/pics/imagefile.jpg

But isn't it better for loading to use relative links?
If I knew where the webtemplate pages are saved I could create a subdirectory in that directory for my pics. Then my image links could be
../pics/imagefile.jpg
which is quicker neater coding.

If you tell me I'm making an unnecessary fuss and just using a full site URL
http://www.mysite.com/pics/imagefile.jpg
then I will do that.

You can use all vb style variables that are used in regular vb templates.

Eg.
$stylevar[imgdir_misc]

Drago13 01-14-2010 02:01 PM

Any idea when this will be ported to 4.0.. This was one of my favorite mods, and I MISS it !!
I have been checking back here a couple times a day , hoping to see some good news.. Anxiously awaiting... ;)

Shanj 01-14-2010 11:30 PM

Dear Logician

I have a long complex page but just for me to edit. It has to be html - lots of tables and some php conditionals.

One area is not complicated, just plain text, font size, colour, line breaks.
There is one picture at the top.
The text is all in one table cell
<td>Text content</td>

I want to frequently update this by changing the text content.

Your interface in the admin cp and your wyswyg html editor online are both very good indeed so obviously I can already do that.
I REALLY love the online web editor.

But it would be wonderful if I could set tags around this quick-edit text section which the online editor recognises.
Then I can open ONLY that section of simple text in one table cell, to edit.

Plus if possible, replace the picture by changing the URL.

Possible?

Your respectful admirer UK.

Shanj 01-15-2010 12:54 AM

I think I have finally worked out a way to make a personalised entry / specialised welcome page per usergroup for my site, using Logician's top quality mod and with a bit of his advice as well.

(Actually with Logician's powerful controls it could also target key individual users with a custom entry / welcome page as well as targeting usergroups.)

No messing with the login process, no secondary complications of being timed out and forced to return to the entry page when logging in again.

Also when giving the URL for entry to anyone in an email/ by phone/ visible on a webpage, in a letter or advert, the welcome page URL can be kept very simple and easy to remember.

The welcome page can provide any information, links, guides as relevant to e.g. very new user/ veteran user/ mods/ various needs for usergroups.

Using Logician's admin cp editor by pasting in a complex page from your own editor,
OR using the "Edit this page" Logician webeditor to make a simple page of information and links, it's not a big deal to create the welcome page you want.


1. I make a perfectly ordinary html page.
I'll call this the false welcome page.

This must NOT be a Logician Webtemplate.
Best to place it outside the vbulletin folder.

Its URL is something like

Code:

www.mysite.com/welcome
To get this ultra simple URL make a directory named
Code:

welcome

containing an index.html page. This is the false welcome page.

This URL is very easy for you to publicise and for your people and new possible people to remember.
Code:

www.mysite.com/welcome
is much more user friendly than either the forumhome (if it's in a subdirectory) or a webtemplate page. It's quick and simple to
- give out on the phone,
-- offer in an email, email signature
- include in a letter/ letter heasding, leaflet, or advert

- and perhaps most important it's easily remembered.
For me with international travelling users that's key as they can remember it wherever they are.

2. But the false welcome page - the index.html page inside the
welcome directory
has nothing in it except a standard redirect to one of Logician's cool webtemplates - which because it is powerful has its characteristically more complex URL.

Redirect is done like this.
Put this code between the <HEAD> and </HEAD> tags of the index page in the "welcome" directory.

Code:

<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.mysite.com/view.php?pg=test ">
Code:

www.mysite.com/view.php?pg=test">
the target for the redirect, is one of Logician's sample webtemplates which will be the TRUE welcome page.
Yours will replace mysite.com and also the name of the webtemplate on the end showing as "test."

3. Because the user is being redirected to a page INTERNAL to VBulletin the standard VB login interface HAS to appear.
The user logs in.
or registers, if you accept open registration.

4. They then arrive at the TRUE welcome page.
For them it's just
- use the very simple URL to the false welcome page (the ordinary html page)
- Login or register
- Arrive at the TRUE welcome page.

4A. The webtemplate on arrival, the TRUE welcome page, obviously has a link to the forumhome either in its navbar (if using the VB header) and optionally in a side menu.
(I recommend Ultimate Side Columns for use with Logician's Webtemplates)

It should also have a prominent link to the TRUE welcome page so users can get back to it for information, guides, links to frequently used areas, the stuff you put together to suit THEIR needs.

5. The TRUE welcome page is one single longish page, set to be accessible to ALL usergroups you want to use this method of entry.
Set that access for this page, in Logician's webtemplates admincp.

(You may also want some usergroups to just use the standard forumhome which you publicise to those types of user. Perhaps having a personalised welcome page is best for your newcomers? or useful as a privilege level gift.)

6. The TRUE welcome page/ webtemplate has sections that are different for different usergroups.
Welcome for very new users,
higher level content for veterans,
stuff for mods,
specifics for various usergroups.

Logician's online editor feature also supports a collaborative page maintained with colleagues, fellow mods, family wetc though this would probably mean a simpler page unless the collaborators are all coders!

These usergroup access controls are created by php conditionals as Logician showed earlier on this thread:

Code:

<if condition="$bbuserinfo[usergroupid] == 6">
this content displays only to administrator
</if>
<if
condition="$bbuserinfo[usergroupid] == 2">
this content displays only to registered member
</if>

There is also php conditional code like this to target an individual user, or bar one otherwise allowed by their usergroup.

.................................................. ...

TO SUMMARISE


Use a false welcome page \directory-named-welcome\index.html
index.html redirects to the TRUE webtemplate welcome (Logician's webtemploate)
the TRUE webtemplate welcome is set in Logician's admin cp to all usergroups you want to have a welcome/ entry page
it has php conditionals to offer customised stuff to a) usergroups b) key individuals or bar same.

Phew! Thank you Logician for helping me so much on the way. I hope this little piece of work is not out of place here.

Shanj 01-16-2010 12:17 AM

Can I make a quick edit section possible like this?

First template is independent, no VB header or footer, set to HTML.
Second template has ONLY text content and URL to image only.

First template has code in one of its table cells (a column) that inserts the content of the second template.

What do I put in the selected table cell, in the first template to make it insert the second template?

My aim is that I open just the SECOND template via its URL,
click Edit this page
and change the typed text in it. Save.
This updates this section in the FIRST template within the table cell.

........................

If this is not good please suggest a way to insert
a) plain text paragraphs and b) an image link
into a specific part of a webtemplate
using the webeditor
without opening and editing the whole webtemplate in the webeditor.

This is because it's a long and complicated webtemplate so i want a way to have a quick update section.

Thank you lots.

jimfries 01-16-2010 02:59 PM

Love the mod Logician! Very well done.

I've also recently updated my site to 4.0.1, and was curious if you have given any plans on upgrading this to the latest versions?

Shanj 01-16-2010 04:36 PM

Quote:

Originally Posted by jimfries (Post 1957397)
Love the mod Logician! Very well done.

I've also recently updated my site to 4.0.1, and was curious if you have given any plans on upgrading this to the latest versions?

Yes s/he said that 4.0 will be done but isn't giving us a date yet.

Logician are you he or she? Just so's I can be properly courteous after all these years!

Logician 01-16-2010 04:47 PM

Quote:

Originally Posted by Shanj (Post 1957480)
Logician are you he or she?

he :)

Shanj 01-16-2010 08:20 PM

Quote:

Originally Posted by Logician (Post 1957491)
he :)

This is like hide n seek in the WOODS - you peep out from behind a ruddy bush and squeak

"he"

after 51 hours silence pre-cisely -

- then another 3 hours silence!

How can you be so cruel? Take pity on me Sir Logician. At least tell me if you can give me code to do this:

Quote:

What do I put in the selected table cell, in the first template to make it insert the text in a second template?
I've been checking every couple of hours just for one word from you - that you can do this yes/no?

Seriously being able to insert text from template B into a table cell in template A, using the webeditor on template B, plus start/end tags in the table cell in template A -
this would complete being able to ignore all those cms/ portal things. They don't give me the fine degree of control on layout or content that your genius does.

Logician 01-17-2010 07:53 AM

Quote:

Originally Posted by Shanj (Post 1956995)
Can I make a quick edit section possible like this?

First template is independent, no VB header or footer, set to HTML.
Second template has ONLY text content and URL to image only.

First template has code in one of its table cells (a column) that inserts the content of the second template.

What do I put in the selected table cell, in the first template to make it insert the second template?

My aim is that I open just the SECOND template via its URL,
click Edit this page
and change the typed text in it. Save.
This updates this section in the FIRST template within the table cell.

........................

If this is not good please suggest a way to insert
a) plain text paragraphs and b) an image link
into a specific part of a webtemplate
using the webeditor
without opening and editing the whole webtemplate in the webeditor.

This is because it's a long and complicated webtemplate so i want a way to have a quick update section.



Thank you lots.

Create 2 webtemplates as you imagined:
a) HTML webtemplate (will be parent)
b) Text Webtemplate (will be a child element in parent)

Then use iframe code in HTML webtemplate to display text webtemplate in it.

Give editor rights to text webtemplate to any user/usergroup you like and they can now edit text content with WYSIWYG editor without dealing with HTML content of the parent.

Shanj 01-17-2010 10:43 AM

Thank you kindly Logician. I just woke up and found your lovely reply.

I was beginning to wonder what that iframe stuff was that came up on this thread sometimes. Should have looked it up. I did that now.

In the parent webtemplate I put

Code:

<iframe src ="http:/www.mysite.com/forums/view_child.htm"      width="100%" height=""></iframe>
100% width is controlled by the parent table cell.

Hmm. Just as a final flourish it would be nice to archive the previous item in an accessible way to the user. Little bit like a blog.
Let's see ...
# Parent webtemplate (html) has iframe for updating info+pic item. This links to child1 (text).
At the bottom of this iframed column (table cell) AFTER the iframe is a link to child2 (text) archive page labelled "More." Placing after iframe ensures that editing the iframe content doesn't blitz this link!

# Open both child1 and child2 in separate windows.
Webedit (text): Cut item 1 text+pic from child1.
Webedit (text): Paste it into child2 archive page.
This is not narrow column, but full width centre content. So can hold quite a few before pagination necessary.

# Webedit (text): Paste or type new item into child1.

# Child1 (pic+text) updated appears in the iframe on parent.
Child2 displays archived items full page spread.

If anyone can see better shortcut on the archiving please tell me.

Or would I be better finding a simple blog and inserting it in the iframe?
No - not for me because all I want is to update a news/ info/ announcement item. No comments etc. But i would like to have the older items archived for users to read.

ryancooper 01-20-2010 04:12 PM

Can someone help me with a web query that will insert the latest 5 threads with title x in them? I want to be able to put a query on every page that says: here are the latest five threads about <subject>

Thanks!

Gn_Snake 01-21-2010 07:06 AM

Quote:

Originally Posted by Logician (Post 1923355)
I can't promise when but yes, eventually it will be ported to vb4.

Yeahhhhh :up:
I hope as soon as possible is the best mod ever

Shanj 01-21-2010 09:57 PM

Quote:

Originally Posted by Gn_Snake (Post 1962079)
Yeahhhhh :up:
I hope as soon as possible is the best mod ever

I won't say seconded more like 2,000ded.
Though I wouldn't touch VB4 with the proverbial barge pole. Give it 6 months to a year to develop.

Shanj 01-23-2010 12:00 AM

Can anyone give a link to a list of vb variables?

The words you put with a dollar sign to get output like a username?

Would be useful to use in my webtemplates and I can't find a list anywhere.
Thanks.

Drago13 01-27-2010 08:13 PM

Quote:

Originally Posted by Gn_Snake (Post 1962079)
Yeahhhhh :up:
I hope as soon as possible is the best mod ever

Yeaaaaa... I will agree this was one of my favorite mods, cant wait for the 4.0 version..:D

Logician 01-28-2010 05:29 AM

Quote:

Originally Posted by Drago13 (Post 1968334)
Yeaaaaa... I will agree this was one of my favorite mods, cant wait for the 4.0 version..:D

For the last 2 weeks I've been working on the VB4 version of WebTemplates.

However I still can't give an ETA because porting proved to be more difficult than I expected. VB4 changed entire template system and algorithm and well WebTemplates is "Template"s :D So entire structure needs to be rewritten and it can take sometime (especially if my daily regular work floods) but rest assured, this hack will be ported to vb4 this way or that way (still without a promised ETA!) ;)

Gn_Snake 02-02-2010 11:15 AM

Quote:

Originally Posted by Logician (Post 1968669)
For the last 2 weeks I've been working on the VB4 version of WebTemplates.

However I still can't give an ETA because porting proved to be more difficult than I expected. VB4 changed entire template system and algorithm and well WebTemplates is "Template"s :D So entire structure needs to be rewritten and it can take sometime (especially if my daily regular work floods) but rest assured, this hack will be ported to vb4 this way or that way (still without a promised ETA!) ;)

This news made me happy :up::D

Thanks Logician

PossumX 02-02-2010 11:18 PM

Logician, you are life saver for putting in the work effort to port this mod. It is, in my view, the best modification I have put on my board, as it has soo many uses, it's unreal. keep up the great work and look forward to seeing the vB4 version, when you get it completed. Thanks again.

Battle_Ring 02-03-2010 08:55 PM

can't wait as i have many templates created with this

ChopSuey 02-18-2010 05:29 AM

Heck this mod is great, no word on the vB4 update? How far are you?

Drago13 02-19-2010 04:24 PM

Quote:

Originally Posted by ChopSuey (Post 1985317)
Heck this mod is great, no word on the vB4 update? How far are you?

Please... :) still anxiously awaiting...

Battle_Ring 02-25-2010 07:53 PM

Come on please update this to Vb4


All times are GMT. The time now is 09:02 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02493 seconds
  • Memory Usage 1,937KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code_printable
  • (2)bbcode_php_printable
  • (23)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete