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)

Antidepresiv 01-04-2011 10:52 AM

Hello Logician, and thanks for the reply, im not sure what part of code should i move ? Can you help me with this one ? I would rly want to get this product working.. Thanks again..

Logician 01-04-2011 12:56 PM

Quote:

Originally Posted by Antidepresiv (Post 2143806)
Hello Logician, and thanks for the reply, im not sure what part of code should i move ? Can you help me with this one ? I would rly want to get this product working.. Thanks again..

Edit template named "headinclude_bottom" and copy everything in it except this part:

Quote:

<link rel="stylesheet" type="text/css" href="{vb:raw vbcsspath}additional.css" />
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="{vb:raw vbcsspath}replacement-vbulletin-ie.css" />
<![endif]-->
{vb:raw template_hook.headinclude_bottom_css}
Then paste copied content into headinclude template.

Antidepresiv 01-04-2011 04:42 PM

Thanks Logician, but, my headinclude_bottom had only 2 lines of code in it, so i copy-pasted them into my headinclude template, and now it works like a charm!!! xD Thank you Logician.. :)

Best Regards,
Antidepresiv!

mmacrypt 01-12-2011 03:49 AM

Thank you for this mod, I just now installed it, went smooth and I didn't skip step 3.

I run an MMA site, my over all goal is to be able to bridge fighters Wiki pages into my site. I don't know if Iframes is the way I want to do it or not. I'm just now jumping in to be honest. I had messed with a Wiki mod but it seems like a dead mod to be honest so I dropped it and I'm moving to this. The biggest issue I see is that I want my side to be updated when people update the Wiki side. I don't know HTML all that well so I don't know if what I'm trying is really easy or impossible but that's why I'm here. I read through this thread and that's where I picked up Iframes. If you think there is a better way to do it than Iframes, please let me know cause that's the direction I'll be heading. Again, thanks for this mod as I'm just getting started.

Brian with MMACrypt.com

Andey91 01-19-2011 02:27 PM

Hi Logician, and thank you for making this hack!

I think i have the same problem as "Antidepresiv" had. The header and footer are messed up and im wondering if I have to talk to the designer or do you have any solutions?

Link: http://www.mw2.no/view.php?pg=test&langid=1

Thanks again.

Logician 01-19-2011 03:03 PM

Quote:

Originally Posted by Andey91 (Post 2151475)
Hi Logician, and thank you for making this hack!

I think i have the same problem as "Antidepresiv" had. The header and footer are messed up and im wondering if I have to talk to the designer or do you have any solutions?

Link: http://www.mw2.no/view.php?pg=test&langid=1

Thanks again.

Please first try to apply the solution in post 92 and if it does not work then try talking to designer.

Andey91 01-19-2011 04:11 PM

It worked! Thank you so much!:)

KeystoneAirsoft 02-20-2011 11:57 PM

Hi,

Came across this mod the other day and have installed it on my site, but I am having a couple of issues I can't seem to remedy and am seeking some help with the issues plus I am seeking some help on a question I have.

Issues first:

1) When I go into admincp/settings/options I select the edit usergroup as 6 which is admin and then I go into Logician's Webtemplates/Webtemplates and edit say for instance info_aboutus and check the Administrator box and even enter my username in the editor permissions settings and then save it. Well when I click the "visit" link I see nothing at the bottom of the template to edit that actual page. This is for pretty much every page I have set the settings on. The only page I can edit is the "priv_privatemessages" page. I am viewing these pages as Administrator.

2) At the bottom of the view pages there is a link linked to "Logging" if I click that link I am brought to a message stating "you do not have permission to access this page. This could be due to one of several reasons:" and lists the reasons which is a standard message from vBulletin. Should this be doing this since I am Administrator?

Question:

I like the 2 Column layout and want to really use it for the site but have 2 boxes on the left one for the site policies, about us, etc and another box for Site Membership Information. My question is how can I add another block below the default one "Site Help Pages"? I hae looked at the code but I am kinda lost on this.

Your help would be greatly appreciated.

Thanks much in advance.

Logician 02-21-2011 06:48 AM

Quote:

Originally Posted by KeystoneAirsoft (Post 2164772)
Came across this mod the other day and have installed it on my site, but I am having a couple of issues I can't seem to remedy and am seeking some help with the issues plus I am seeking some help on a question I have.

Can't you see edit this page link in default webtemplates like "test"? It is next to "Page Created at ...." line at the bottom right above" WebTemplate Quick Info Panel for Admins".

If you can't please edit the webtemplate theme that webtemplates is using (or webtemplate itself if it is not using a theme) and make sure it has this line somewhere:
{vb:raw WT_Editor_link}

Both your complaint 1 and 2 can be because your primary usergroup is not administrator. Please make sure your primary usergroup is administrator, not your secondary usergroup.

Regarding item 3:
Edit webtemplate THEME site information pages and add this code:
HTML Code:

<div class="block" id="foldercontrols">
    <div class="blockhead">
        <h2>Site Help Pages</h2>
    </div>
    <div class="blockbody settings_form_border">
       
       
        <ul class="blockrow">
      {vb:raw WQ_siteinformationitems}
        </ul>
                       
        </div>
    </div>

before {vb:raw nowbrowsing}

KeystoneAirsoft 02-22-2011 02:14 AM

Hi Logician,

Thanks for your prompt reply.

There are only 5 pages I can see the "Edit" link. test, test_pagination, priv_privatemessages, test2 and wtlist. From what I am gathering from looking at the ones I see it in and the ones I don't it is basically only the info_*.* pages I am not seeing it in which uses the "webtemplate THEME site information pages" After searching that THEME the "{vb:raw WT_Editor_link}" was not in there so I added it right above the line.
HTML Code:

<div class="blockfoot floatcontainer">
  <a href='sendmessage.php'>Still Have A Question?</a>

Now it works great. ;)

I didn't think I changed my primary usergroup but I guess I did, lol. Sorry thats corrected and that works great.

Code you supplied worked great too, thank you very much for sharing.

Thank you very much for your help and this great mod.


All times are GMT. The time now is 04:07 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.01526 seconds
  • Memory Usage 1,753KB
  • 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
  • (2)bbcode_html_printable
  • (4)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
  • (10)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