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)

x iJailBreak x 10-20-2020 07:53 PM

Quote:

Originally Posted by In Omnibus (Post 2603635)
vB5 is not "a mess" but you would have to be using it to know that.

With the greatest of respect, vBulletin 5 is dog sh*t. Why do you think so many major mod developers left the platform? There has been discussions on this very board where the staff have said this. There is extremely poor mod support in comparison to vB3-4 and overall, the platform is just extremely poorly made and thought through.

I've tried vB5. I currently hold a license for vB3, vB4 and vB5. I tried it during alpha, beta and the final release. I've tried newer versions. It's awful. It is NOT a good evolution of the software in any way, shape or form.

It's also the main reason you'll find many newer boards switching software to xenForo/IPB etc. It isn't up to standard. Many boards who updated to vB5 ended up either trying to downgrade back to vB4 or switch to an alternative software that is far better for their means than the absolute sh*t show that is vB5. The only issue with downgrading to vB4 is the fact it's EOL, so unless you are able to upgrade it yourself (or know someone who can) it's not ideal to do these days. Otherwise, vB4 sh*ts all over vB5. And then some.

OP, sorry for derailing the thread with this. But I absolutely refuse to be told vB5 is an adequate solution when it clearly isn't. I hope this project goes well for you.

VinceOrlando 10-20-2020 07:56 PM

Quote:

Originally Posted by In Omnibus (Post 2603635)
vB5 is not "a mess" but you would have to be using it to know that.

kek vb5 is a dumpster fire of absolute shit lmao dont kid yourself

cdoyle 10-26-2020 04:25 PM

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.

Dr.CustUmz 10-28-2020 02:22 AM

@cdoyle im working on something I HAVE to finish, but I promise you I am not dropping support from you, I know you been turning to me for help. As soon as Im finished with this project, i will be back on the xen project, so unless the developer has got to you by then, I'll help you resolve this.

Greek76 10-28-2020 04:33 PM

Quote:

Originally Posted by VinceOrlando (Post 2604316)
kek vb5 is a dumpster fire of absolute shit lmao dont kid yourself

Maybe it was when it first started off but as of now it’s not bad at all.

cdoyle 10-28-2020 08:48 PM

Quote:

Originally Posted by Dr.CustUmz (Post 2604401)
@cdoyle im working on something I HAVE to finish, but I promise you I am not dropping support from you, I know you been turning to me for help. As soon as Im finished with this project, i will be back on the xen project, so unless the developer has got to you by then, I'll help you resolve this.

Thanks DR,
I really appreciate all the help you've given already on this :)
I've been playing around with the templates a little, fixed a few things here and there.

The rating one just has me stumped.

I've said this before, this is a great mod. Not sure why Christeris has decided to abandon it already.

x iJailBreak x 10-29-2020 07:45 PM

Quote:

Originally Posted by cdoyle (Post 2604419)
Thanks DR,
I really appreciate all the help you've given already on this :)
I've been playing around with the templates a little, fixed a few things here and there.

The rating one just has me stumped.

I've said this before, this is a great mod. Not sure why Christeris has decided to abandon it already.

He may not have, life has a way of throwing horrific curveballs at people sometimes (not suggesting it has, just a potential reason). He's probably just busy with other projects.

cdoyle 11-03-2020 08:41 PM

Another improvement to this mod I would like to see is with the navigation.

Currently in Desktop mode, it displays as if it's on a mobile screen. Hiding all of the options.

It would be great if when on a larger/desktop the navigation displayed like a true navigation across the top. Then when on mobile or smaller screens, it went into the mobile style.

iA1 11-07-2020 03:27 AM

Quote:

Originally Posted by cdoyle (Post 2604536)
Another improvement to this mod I would like to see is with the navigation.

Currently in Desktop mode, it displays as if it's on a mobile screen. Hiding all of the options.

It would be great if when on a larger/desktop the navigation displayed like a true navigation across the top. Then when on mobile or smaller screens, it went into the mobile style.

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;">

iA1 11-07-2020 03:29 AM

I think there is a missing javascript somewhere. Inline moderation tools do not work in this style. The tickbox on posts and threads does not select them.


All times are GMT. The time now is 09:35 AM.

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.01135 seconds
  • Memory Usage 1,751KB
  • 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
  • (4)bbcode_code_printable
  • (6)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