![]() |
I think there's a bug, HTML list's doesn't work for me.
HTML Code:
<ul> || those, i use HTML parse method. |
Quote:
Quote:
|
Quote:
|
try to override with inline styling with something like
Code:
<ul> |
Quote:
Try this? Quote:
|
Quote:
Webtemplates is a vbulletin powered page so it inherits this CSS so that it can show your pages in the way your vbulletin looks. In this CSS vbulletin skin has, the <ul> and <li> elements are coded to be displayed in the way you are seeing in your webtemplate. So how your webtemplate is displaying your HTML list has nothing to do with the hack itself, it is how vbulletin skin CSS has been programmed to display them. To display them differently you need to play with vb CSS elements or more easier, you'll use a custom <ul> <li> design as dartho pointed out above. |
Can we have a confirmation that this hack works for 4.2.0?
|
Quote:
|
Quote:
|
Is there a way to use this mod so I can display login and facebook connect in my site header that extends beyond the forum directory?
|
Hi, i don't understand how to put image a background to a custom page.
Help me? Thank you |
Quote:
Quote:
|
hemm is this mods can add a jquery slide too in the pages?
i think it will be awesome ? |
Quote:
|
Possible bug report...
Installed on 4.2.0 PL2 All works well...except when I went to save my template after editing with the WYSIWYG editor, I get a blank page and the address bar shows mydomain.net/editors.php No errors or anything in FireFox...just blank page. Tried it in ie and get an Error 500. Now if I edit it with the WYSIWYG editor and switch to code view and THEN click to save it, it saves just fine. Summary: If I save with the WYSIWYG editor displayed, it goes to a blank page and does nothing else. As long as I save while in code view (I can edit using either editor with no issues), it saves just fine. Thanks for this hack...I paid for the vb publishing suite, but I'm running WebTemplates on my older vBulletin site and love it so I ended up disabling the CMS on the new site in order to run WT:) Edit: I tried this both with my custom template and one of the premade templates provided. Same problem on both as well. Vbulletin install is pretty fresh so the likelihood is fairly low that it was caused by any mods. I think all I have installed is VSA Advanced Registration and Spam-o-Matic. |
Quote:
I found out that somewhere along the new versions vbulletin changed WYSIWYG editor structure so it effected the hack. I just released a new version to fix this issue. For users who has this problem, you do NOT have to make a new full installation of the hack. You can just download hack version 4.0.1 (which is attached to the first post of the thread) and replace "editors.php" in your server with this version's editors.php and this should fix it. |
Quote:
|
Hello Logician
Could you please help with a small query? I am using Everywhere Sidebar Mod and have followed these instructions. Open your custom template search for {vb:raw navbar} add below {vb:raw sidebaropen} search for {vb:raw footer} add above {vb:raw sidebarext} save But I am stuck at this part, 3. Open custom page php file and before the render line "$templater->render();" add $templater->register('sidebarext', $sidebarext); $templater->register('sidebaropen', $sidebaropen); assuming you are using $templater as variable change it as required save and upload you php file Any pointers? Thanks. |
Quote:
PHP Code:
PHP Code:
Also please note that integrating that hack with webtemplates can be tricky as webtemplates is more sophisticated than other simple vb hacks. It can use several designs (themes, HTML parsing, PHP parsing, VB code parsing) etc. so trying to add a sidebar there might not always work, it can break layout in certain scenarios. If you encounter such a problem, you need to get a designer to fix these layout problems for you. So give it shot but don't expect miracles. :) |
Quote:
|
<a href="http://www.healthcommunity.co/" target="_blank">HealthCommunity.co</a>
I have a number of MODS on our website, which represent a very small amount of the total MODS that I have downloaded. Through trial and error, I have found for the most part, that some MODS just don't work, a few will ruin your website, and to further, in most cases, if in fact the MOD does come with instructions, they are vaguely written. Being that 4.2 does not come with templates for a privacy policy and terms of use, I thought that I would give this MOD a try. Yes, it does work favorably with my custom skin, and the instructions are immaculate. For one that wants to create additional pages on their website, this MOD is an essential. |
I am looking to hide ads on my pages... I used
Code:
<vb:if condition="THIS_SCRIPT == view AND $pg == 'hours'"> .../forums/hours.htm in stead of .../forums/view.php?pg=hours Is this why? Is there a way around this? Thank |
Quote:
$pg == 'hours' conditional is always wrong) when your hours page starts. (Hence ads display). Reparsing them inside phpinclude section of webtemplate might help: PHP Code:
|
Quote:
Thank you for your quick response. Can You explain in a little more detail on how to Quote:
|
Quote:
PHP Code:
|
No go on that. Tried putting the code in header. I will PM you so we can keep this thread on topic. Thanks! Ryan
|
Quote:
What I did is: change navbar template: Code:
{vb:raw ad_location.ad_navbar_below} Code:
<vb:if condition="$pg != 'hours'"> Code:
$templater = vB_Template::create('navbar'); |
You are amazing! Thank you so much! Although you totally lost me :)
|
Does anyone know how to include the latest posts (only found in the post title) of the page your are on?
Example I am browsing a page called Space mountain - I would like to have on that page the last 5 posts that have Space mountain in the title of the post? I know I can make a web query for just Space Mountain and inclue it but then I would have to have a query for every search term. Is there a way to have it show the $WT_PageName% in the Query? I did try Code:
SELECT threadid, title, postusername,postuserid,dateline |
Another question about setting "THIS_SCRIPT". I have one tab that is a drop down menu and contains all of my custom template using this mod however when any of those pages are viewed the "Forums" tab is highlighted. I've found out that if I add the appropriate "THIS_SCRIPT" into the navigation manager then I can force a different tab to be highlighted.
How can I make all of the custom webtemplates highlight a certain tab? Do I need to add in define('THIS_SCRIPT', 'scriptname'); somewhere? EDIT: Actually this is going to be harder than I thought :( I have two pages associated with this mod so can't assign all custom pages to one tab. Really would appreciate any insight still! |
Quote:
I believe your query is somehow wrong. Can you run the same query in phpmyadmin and return valid results with it? There are certain things you need to check. Eg. your WHERE query is checking the keyword in "taglist" field, not title. I'm not sure if this is intentional. Also when you use '$WT_PageName%' instead of "'%$WT_PageName%'" you are querying results that begins with $WT_PageName rather than including. |
Logician,
Would you able able to post the code to use that will return the latest 5 threads about %$WT_PageName% I was using tags because I couldnt figure out how to search the title of posts :) LOL |
Quote:
SELECT t.threadid, t.title, t.firstpostid, t.lastpost, t.replycount, t.postusername, t.postuserid, t.lastposter, t.dateline, t.views, p.pagetext FROM " . TABLE_PREFIX . "thread t LEFT JOIN " . TABLE_PREFIX . "post p ON p.postid = t.firstpostid WHERE t.title LIKE '%$WT_PageName%' AND t.open = '1' AND t.visible = '1' ORDER BY t.dateline DESC LIMIT 0 , 5 |
AWESOME thanks Again! :D
|
Any comments on highlighting the proper navbar tab on custom pages?
|
Thanks for addon. its easy & handy to add new pages.
I have installed this & got only 1 navtab to work correctly by using Tab Script(s) "view" & for other 2 tabs I used "Append 'tabid' to URL" & this stays highlightend. |
Logican Can I use t he Webtemplate name in the Result Prefix Code.
I would like to put latest topics on $WT_PageName But it does not seem to pick it up? |
I am also trying to exclude a series of forum ID's I tried added:
t.forumid to the select then adding: AND t.forumid NOT IN '36,37,77' But it tosses a error |
Quote:
AND t.forumid NOT IN (36,37,77) |
nope they still show...
|
All times are GMT. The time now is 07:46 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|