vb.org Archive

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

Bluefin221 03-03-2014 03:48 PM

I'll probably need to uninstall this :(

I read through every comment and one other person has the same theme and issue as me, no one responded to him, upon looking at his site its the exact same as mine. Real pity as this mod would have been perfect for me.

dethfire 05-25-2014 02:43 PM

There is no uninstall code for this?

Logician 05-25-2014 03:32 PM

Quote:

Originally Posted by dethfire (Post 2499343)
There is no uninstall code for this?

Webtemplate Post-Installation FAQ: Question 20

Replicators 02-12-2016 10:29 PM

Well this was a heartbreaking experience, come to find out it only works on the default theme.

Logician 02-13-2016 06:48 AM

Quote:

Originally Posted by Replicators (Post 2564762)
Well this was a heartbreaking experience, come to find out it only works on the default theme.

If you have a custom skin, you need to apply its CSS code to Webtemplate header/footer. Most skin designers don't follow vbulletin's general template structure ($headinclude - $header - $content - $footer) so it makes impossible for the hack to inherit their look without their CSS is applied to Webtemplate templates.

TheLastSuperman 02-14-2016 12:35 AM

Quote:

Originally Posted by Replicators (Post 2564762)
Well this was a heartbreaking experience, come to find out it only works on the default theme.

Ohh but it does! See Logician's reply below yours ;).

Quote:

Originally Posted by Logician (Post 2564784)
If you have a custom skin, you need to apply its CSS code to Webtemplate header/footer. Most skin designers don't follow vbulletin's general template structure ($headinclude - $header - $content - $footer) so it makes impossible for the hack to inherit their look without their CSS is applied to Webtemplate templates.

I love this mod, have always loved it truth be told and now that vBAdvanced CMPS is pretty much phasing out I've been recommending this to everyone ;).

Thanks Logician, mean it!

Gn_Snake 04-06-2016 11:57 AM

Quote:

Originally Posted by Logician (Post 2564784)
If you have a custom skin, you need to apply its CSS code to Webtemplate header/footer. Most skin designers don't follow vbulletin's general template structure ($headinclude - $header - $content - $footer) so it makes impossible for the hack to inherit their look without their CSS is applied to Webtemplate templates.


Hi, Logician and thank you for this plugin.
I am years i use it but over time i changed my skin and today using the theme_default of this plugin the footer and the header misaligned on the page.
I did not understand what should I do to fix?

Thx

Logician 04-06-2016 03:29 PM

Quote:

Originally Posted by Gn_Snake (Post 2568558)
Hi, Logician and thank you for this plugin.
I am years i use it but over time i changed my skin and today using the theme_default of this plugin the footer and the header misaligned on the page.
I did not understand what should I do to fix?
Thx

If you give me the URL of your both pages (forum working fine and WT broken), I can take a look.

Gn_Snake 04-10-2016 03:51 PM

Quote:

Originally Posted by Logician (Post 2568565)
If you give me the URL of your both pages (forum working fine and WT broken), I can take a look.

Yes Logician,
These are the pages where the header part is misaligned:
http://www.hardwaregame.it/forum/vie...=collaboratore
http://www.hardwaregame.it/forum/vie...la_sala_giochi

I removed the footer command because it seemed to me at the center of the page

Thx

Logician 04-10-2016 04:03 PM

Your custom skin has an additional CSS which you need to add to WT's head section:

<link href="http://www.hardwaregame.it/forum/clientscript/vbulletin_css/style00035l/additional.css?d=1458772949" type="text/css" rel="stylesheet">

Gn_Snake 04-11-2016 06:55 AM

Quote:

Originally Posted by Logician (Post 2568738)
Your custom skin has an additional CSS which you need to add to WT's head section:

<link href="http://www.hardwaregame.it/forum/clientscript/vbulletin_css/style00035l/additional.css?d=1458772949" type="text/css" rel="stylesheet">


I'm sorry i did not understand what i enter, and where? :o

Logician 04-11-2016 08:04 AM

Quote:

Originally Posted by Gn_Snake (Post 2568753)
I'm sorry i did not understand what i enter, and where? :o

I think easiest will be if you pm me your admin cp details.

dmm2020 06-26-2017 01:32 AM

Question I have: Does the HTML version parse the PHP tags if I embed them into HTML in this mod? I want to create some custom forms for my website with it.

Logician 06-26-2017 06:03 AM

Quote:

Originally Posted by dmm2020 (Post 2587795)
Question I have: Does the HTML version parse the PHP tags if I embed them into HTML in this mod? I want to create some custom forms for my website with it.

HTML version does not parse PHP tags but there is also a PHP version which can directly run PHP so I believe you can use that one.

dmm2020 06-26-2017 03:42 PM

Quote:

Originally Posted by Logician (Post 2587809)
HTML version does not parse PHP tags but there is also a PHP version which can directly run PHP so I believe you can use that one.


Question I have then, does PHP version parse embedded HTML or do I have to echo the whole thing?

dmm2020 06-26-2017 03:44 PM

Reason being, is when I get to it in the next few days, I need to design a form that receives GET and POST data and then pass that on via email or PM depending on what I decide to do with it.

MarkFL 06-26-2017 03:57 PM

Quote:

Originally Posted by dmm2020 (Post 2587815)
Reason being, is when I get to it in the next few days, I need to design a form that receives GET and POST data and then pass that on via email or PM depending on what I decide to do with it.

In my opinion, you would likely be better off simply creating a custom page that renders a custom template containing the form, and a support script that handles the actions based on the data input into the form.

I'm not trying to discourage use of this product...we use it at MHB in fact, but for the purpose you have stated, I would use my own custom code instead. :)

Logician 06-26-2017 05:38 PM

Quote:

Originally Posted by dmm2020 (Post 2587814)
Question I have then, does PHP version parse embedded HTML or do I have to echo the whole thing?

It parses embed HTML. Eg. this works:

Code:

// This is a TEST PHP Code to demonstrate webtemplates hack PHP parsing  feature:

echo "Time now is $today<br><br>";

echo "You  registered <b>this</b> board at ".date('M-d-Y  h:i:s',$vbulletin->userinfo[joindate]);

?>

<p><i>hello</i></p>
<?php

exit;


dmm2020 06-28-2017 02:09 AM

Quote:

Originally Posted by MarkFL (Post 2587816)
In my opinion, you would likely be better off simply creating a custom page that renders a custom template containing the form, and a support script that handles the actions based on the data input into the form.

I'm not trying to discourage use of this product...we use it at MHB in fact, but for the purpose you have stated, I would use my own custom code instead. :)

Actually, too much effort to create a complete custom product. I finished a form in 2 daysusing dhtmlx ajax and it's working fine and hope to go live with it this weekend on my website.

Still trying to figure out what issues was with other coders in the forum because I have this product completely implemented and replacing the vB CMS on my website.

WOLF-G4MIN-X 10-13-2017 06:25 PM

Not to sound stupid or anything, but I really dont get this. I installed it, i also get what its for, but the whole themes thing I dont understand. How can I at least have the theme be the same as my current vB theme ? Is that whole thing very complicated ?

I wish i would have the vBCMS, but my vB4 license back then I bought without the CMS, and I sure dont pay 200 Dollar or more to get it now for something A) i already have, the forum, and B) I dont want/need vB5.

Could someone maybe explain to me, how I can theme it the way I have my current site theme ?
Any help would be appreciated.

Logician 10-14-2017 05:12 AM

Quote:

Originally Posted by WOLF-G4MIN-X (Post 2590450)
Not to sound stupid or anything, but I really dont get this. I installed it, i also get what its for, but the whole themes thing I dont understand. How can I at least have the theme be the same as my current vB theme ? Is that whole thing very complicated ?

I wish i would have the vBCMS, but my vB4 license back then I bought without the CMS, and I sure dont pay 200 Dollar or more to get it now for something A) i already have, the forum, and B) I dont want/need vB5.

Could someone maybe explain to me, how I can theme it the way I have my current site theme ?
Any help would be appreciated.

When you create a new webtemplate, set :
theme = "DEFAULT BASIC THEME"
header = "DEFAULT VB HEADER"
footer = "DEFAULT VB FOOTER"
and this web template will have your current vb theme. "test" webtemplate that comes with default installation is a good example.


All times are GMT. The time now is 01:03 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.01397 seconds
  • Memory Usage 1,777KB
  • 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
  • (1)bbcode_code_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (21)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