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)
-   -   Major Additions - XenvB4 (Formerly ProjectvB4) (https://vborg.vbsupport.ru/showthread.php?t=328133)

iA1 11-07-2020 11:04 AM

Quote:

Originally Posted by cdoyle (Post 2604386)
Does anyone know why the 'rate this thread' dropdown option doesn't work within this mod?
I can't seem to find why all the other dropdowns work, but this one doesn't.

I checked the default style of VB and it works there.

In SHOWTHREAD template, look for the following lines:
Code:

                        <vb:if condition="$show['threadrating']">
                                <li class="popupmenu" id="threadrating">
                                        <h6><a class="popupctrl" href="javascript://">{vb:rawphrase rate_this_thread}</a></h6>
                                        <div class="popupbody popuphover">

and replace with:
Code:

                        <vb:if condition="$show['threadrating']">
                                <li class="popupmenu" id="threadrating">
                                        <h6><a class="popupctrl" href="javascript://">{vb:rawphrase rate_this_thread}</a></h6>
                                        <ul class="popupbody popuphover">

Note that the only change is in the last line here from div to ul.

The closing of this div should also be changed. Look for:
Code:

                                                        <input type="hidden" name="t" value="{vb:raw threadid}" />
                                                        <input type="hidden" name="pp" value="{vb:raw perpage}" />
                                                        <input type="hidden" name="page" value="{vb:raw pagenumber}" />
                                                </form>
                                        </div>

and replace with:
Code:

                                                        <input type="hidden" name="t" value="{vb:raw threadid}" />
                                                        <input type="hidden" name="pp" value="{vb:raw perpage}" />
                                                        <input type="hidden" name="page" value="{vb:raw pagenumber}" />
                                                </form>
                                        </ul>



If anyone has done any other updates to this mod / style, post them here so that we can add them to the next release.

cdoyle 11-07-2020 12:41 PM

Quote:

Originally Posted by iA1 (Post 2604583)
In the navbar template, replace the following lines:
Code:

<div class="col col-xs-3" style="padding:10px 0px 0px 30px !important;">
<span class="hidden-xs">
<a type="button" class="btn btn-labeled btn-info" href="panel_menu.php" data-toggle="panel-Left"><span class="btn-label"><i class="fa fa-sitemap" aria-hidden="true"></i></span>{vb:rawphrase xenvb4_navigator}</a>
</span>
<span class="hidden-sm hidden-md hidden-lg">
<a type="button" class="btn btn-info" href="panel_menu.php" data-toggle="panel-Left"><i class="fa fa-sitemap" aria-hidden="true"></i></a>
</span>
</div>
<div class="col col-xs-9 text-right" style="padding:10px 30px 0px 0px !important;">

with these lines:
Code:

<div class="col col-xs-10 hidden-sm hidden-xs" style="padding:10px 0px 30px 30px !important;">
    <ul id="navtabs" class="navtabs floatcontainer<vb:if condition="$show['member'] AND $notifications_total"> notify</vb:if>">
{vb:raw navigation}
    </ul>
</div>
<div class="col col-xs-10 hidden-md hidden-lg hidden-xl" style="padding:10px 0px 0px 30px !important;">
<span class="hidden-xs">
<a type="button" class="btn btn-labeled btn-info" href="panel_menu.php" data-toggle="panel-Left"><span class="btn-label"><i class="fa fa-sitemap" aria-hidden="true"></i></span>{vb:rawphrase xenvb4_navigator}</a>
</span>
<span class="hidden-sm hidden-md hidden-lg">
<a type="button" class="btn btn-info" href="panel_menu.php" data-toggle="panel-Left"><i class="fa fa-sitemap" aria-hidden="true"></i></a>
</span>
</div>
<div class="col col-xs-2 text-right" style="padding:10px 30px 0px 0px !important;">

and in navbar_tabs template, find
Code:

<ul class="floatcontainer">
and replace with
Code:

<ul class="floatcontainer" style="margin: 15px 30px;">

Yay! Thank You this is awesome! So happy to see a navbar back!
Couple questions, not sure if you know how to fix.

1. Is there a way to make the sub options appear as dropdowns in the desktop view?
2. I noticed when in mobile view (and it may have always done this and I just didn't notice it until now). But the search icon, logout option etc. ) squish together and become invisible in this area. Do you know how to make them fit better in the top blue area?

https://vborg.vbsupport.ru/external/2020/11/1.png


EDIT:
I just noticed that the dropdowns do appear when I hover over this white area. DId I do something wrong? Or is there something else going on?
https://vborg.vbsupport.ru/external/2020/11/1.png

Edit 2:
I'm also not able to actually select anything, as they disappear as soon as I try and hover an option.

cdoyle 11-07-2020 12:48 PM

Quote:

Originally Posted by iA1 (Post 2604586)
In SHOWTHREAD template, look for the following lines:
Code:

                        <vb:if condition="$show['threadrating']">
                                <li class="popupmenu" id="threadrating">
                                        <h6><a class="popupctrl" href="javascript://">{vb:rawphrase rate_this_thread}</a></h6>
                                        <div class="popupbody popuphover">

and replace with:
Code:

                        <vb:if condition="$show['threadrating']">
                                <li class="popupmenu" id="threadrating">
                                        <h6><a class="popupctrl" href="javascript://">{vb:rawphrase rate_this_thread}</a></h6>
                                        <ul class="popupbody popuphover">

Note that the only change is in the last line here from div to ul.

The closing of this div should also be changed. Look for:
Code:

                                                        <input type="hidden" name="t" value="{vb:raw threadid}" />
                                                        <input type="hidden" name="pp" value="{vb:raw perpage}" />
                                                        <input type="hidden" name="page" value="{vb:raw pagenumber}" />
                                                </form>
                                        </div>

and replace with:
Code:

                                                        <input type="hidden" name="t" value="{vb:raw threadid}" />
                                                        <input type="hidden" name="pp" value="{vb:raw perpage}" />
                                                        <input type="hidden" name="page" value="{vb:raw pagenumber}" />
                                                </form>
                                        </ul>



If anyone has done any other updates to this mod / style, post them here so that we can add them to the next release.

Thank You!!!
can't believe that's all it was!!

cdoyle 11-10-2020 12:36 PM

Quote:

Originally Posted by cdoyle (Post 2604587)
Yay! Thank You this is awesome! So happy to see a navbar back!
Couple questions, not sure if you know how to fix.

1. Is there a way to make the sub options appear as dropdowns in the desktop view?
2. I noticed when in mobile view (and it may have always done this and I just didn't notice it until now). But the search icon, logout option etc. ) squish together and become invisible in this area. Do you know how to make them fit better in the top blue area?

https://vborg.vbsupport.ru/external/2020/11/1.png


EDIT:
I just noticed that the dropdowns do appear when I hover over this white area. DId I do something wrong? Or is there something else going on?
https://vborg.vbsupport.ru/external/2020/11/1.png

Edit 2:
I'm also not able to actually select anything, as they disappear as soon as I try and hover an option.

Grrr, VB.org keeps changing the URLs to my images overnight.
To see what I'm talking about, go here
http://www.caraudiocentral.net

I've tried starting over, but ended up with the same result. Any ideas why the dropdowns don't seem to be working correctly?

Hostboard 11-10-2020 12:47 PM

Quote:

Originally Posted by cdoyle (Post 2604627)
Grrr, VB.org keeps changing the URLs to my images overnight.
To see what I'm talking about, go here
http://www.caraudiocentral.net

I've tried starting over, but ended up with the same result. Any ideas why the dropdowns don't seem to be working correctly?

What would vb.org have to do with any images on your site?

cdoyle 11-10-2020 01:59 PM

Quote:

Originally Posted by Hostboard (Post 2604628)
What would vb.org have to do with any images on your site?

I meant the screenshots in the post I quoted, the URLs are being changed so the images don't display

ChrisTERiS 11-20-2020 08:17 AM

........Link removed................

cdoyle 11-20-2020 08:00 PM

Quote:

Originally Posted by ChrisTERiS (Post 2604744)
For those who want to try something new.
https://www.xlforo.com/


Demo:
https://demo.xlforo.com/

Is this built on VB?
Or is this something else?

Edit: It looks to be a whole new forum suite.
Will you still be supporting XenVB?

ChrisTERiS 11-21-2020 03:07 AM

Quote:

Originally Posted by cdoyle (Post 2604753)
Is this built on VB?
Or is this something else?

It's not a forum, or better, is not just a forum. Is a portal having all those sections. That said, is not vB, is not xF, is not IPS. Is just a fair portal, for those who want to start a ready community. Ideal a City Portal.

Quote:

Originally Posted by cdoyle (Post 2604753)
Edit: It looks to be a whole new forum suite.
Will you still be supporting XenVB?

Sure. XLForo is something different. My passion for vBulletin is still active.

cdoyle 11-24-2020 12:18 PM

Will you still be releasing the newsletter and classifieds mods as part of XEN?


All times are GMT. The time now is 12:51 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.01411 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
  • (12)bbcode_code_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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