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.

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?

Hostboard 11-24-2020 12:28 PM

I would recommend that you add a service to your list of qualifications you are willing to offer in that "Upgrade VB4 to PHP 7.4.x" as unfortunately publishing any of the core code even here is against the rules. many sites are already running under this version of PHP with zero issues. There have been quite a few here and on other VB related sites wanting to update PHP so I think there is a niche market for this.

Just a side note, my site just got updated to MariaDB 10.5.8 and seems to be no issues with that either.

ChrisTERiS 11-25-2020 05:34 AM

Quote:

Originally Posted by cdoyle (Post 2604813)
Will you still be releasing the newsletter and classifieds mods as part of XEN?

Newsletter is a bundle of 2 separate modules:
  1. First I'll complete the Mailinglist module. Have already the functions to Subscribe/Unsubscribe, so what left is to add the Newsletter creation.
  2. Second is the Member Newsletter which will includes forum activity. If I use the exact same code as my old mod, does not needs lot of work, as the only that need to change are some (few) templates.
But I can't fix a date for release. The good point is that I finished with XLForo, both script and website, so I can focus now again the XenvB4.

ChrisTERiS 11-25-2020 05:44 AM

Quote:

Originally Posted by Hostboard (Post 2604814)
I would recommend that you add a service to your list of qualifications you are willing to offer in that "Upgrade VB4 to PHP 7.4.x" as unfortunately publishing any of the core code even here is against the rules. many sites are already running under this version of PHP with zero issues. There have been quite a few here and on other VB related sites wanting to update PHP so I think there is a niche market for this.

Just a side note, my site just got updated to MariaDB 10.5.8 and seems to be no issues with that either.

Sorry, don't have in my plans to offer such services due to lack of free time. Someone else who released here PHP 7.3 compatibility, has also updated his files for 7.4, but don't know if he is willing to release them in public.

As for the copyrights. In this case, law is not strict, for 2 reasons:
  1. Product has officially marked as EOL.
  2. Everybody can look around to find a way to keep his investment alive. Buying something is always an investment, which also has rights according to the law. Nobody can push someone to continue upgrading a script, but on the same case, nobody can restrict a user to find a way to protect his investment as long as the company does not offers it.

cdoyle 11-25-2020 12:55 PM

Quote:

Originally Posted by ChrisTERiS (Post 2604824)
Newsletter is a bundle of 2 separate modules:
  1. First I'll complete the Mailinglist module. Have already the functions to Subscribe/Unsubscribe, so what left is to add the Newsletter creation.
  2. Second is the Member Newsletter which will includes forum activity. If I use the exact same code as my old mod, does not needs lot of work, as the only that need to change are some (few) templates.
But I can't fix a date for release. The good point is that I finished with XLForo, both script and website, so I can focus now again the XenvB4.

That's great to hear that XEN will still be developed and the additional features are still in the works.
One thing about the newsletter, will it be possible to send to forum members? In addition to people who sign up? My idea for the newsletter is to keep my members engaged with the forum.

Just a thought, as I know on my forum it would get more readers that way.

If they don't want to receive it, there could be an option within their User CP to unsubscribe?

ChrisTERiS 11-25-2020 01:39 PM

Quote:

Originally Posted by cdoyle (Post 2604844)
One thing about the newsletter, will it be possible to send to forum members? In addition to people who sign up? My idea for the newsletter is to keep my members engaged with the forum.

Just a thought, as I know on my forum it would get more readers that way.


This is exactly what I have in my mind but my English quality didn't help me to make it clear. So, in simple words, the recipients are:
  1. Mailinglist: Anybody who subscribes to Mailinglist
  2. Newsletter: Members



Quote:

Originally Posted by cdoyle (Post 2604844)
If they don't want to receive it, there could be an option within their User CP to unsubscribe?

Sure. Even if on the footer of each email should be an Unsubscribe link (you can turn if OFF), the users can always unsubscribe from an option in usercp. I'll not use the current setting "Receive emails from Admin", to have the system flexible. Maybe someone don't want to get Newsletter but still want to be inform for important announcements.


Finally, for those who don't remember this mod, it also supports:
  1. Bounce emails
  2. Ability to Admins to send a message from a smartphone to a specific email address having a password after the title (not visible to message), and the system to send this message to members. Works fine, but as it's a bit weak for security (if someone hacks the password), I'm thinking to extend it by adding a confirmation with SMS.

cdoyle 12-02-2020 12:19 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;">

@iA1;
Any idea why my dropdowns don't seem to functioning correctly in the nav?
I've tried your method a couple times, but get the same result.

www.caraudiocentral.net

iA1 12-07-2020 11:29 AM

Quote:

Originally Posted by cdoyle (Post 2604979)
@iA1;
Any idea why my dropdowns don't seem to functioning correctly in the nav?
I've tried your method a couple times, but get the same result.

www.caraudiocentral.net

Add this to additional.css

.navtabs .popupbody {top:20px}

The color of those links should also be changed, as it matches the background. I think you might have to change that from stylevars. But if you want to override stylevars settings and manually set them in additional.css, then add this line and change the color value to whatever required:

.navtabs > ul.floatcontainer li a, .navtabs > ul.floatcontainer li a.popupctrl { color: #0575b2;}

cdoyle 12-09-2020 11:52 AM

Quote:

Originally Posted by iA1 (Post 2605071)
Add this to additional.css

.navtabs .popupbody {top:20px}

The color of those links should also be changed, as it matches the background. I think you might have to change that from stylevars. But if you want to override stylevars settings and manually set them in additional.css, then add this line and change the color value to whatever required:

.navtabs > ul.floatcontainer li a, .navtabs > ul.floatcontainer li a.popupctrl { color: #0575b2;}

That worked! Thank You

cdoyle 12-14-2020 09:45 PM

Quote:

Originally Posted by ChrisTERiS (Post 2604824)
Newsletter is a bundle of 2 separate modules:
  1. First I'll complete the Mailinglist module. Have already the functions to Subscribe/Unsubscribe, so what left is to add the Newsletter creation.
  2. Second is the Member Newsletter which will includes forum activity. If I use the exact same code as my old mod, does not needs lot of work, as the only that need to change are some (few) templates.
But I can't fix a date for release. The good point is that I finished with XLForo, both script and website, so I can focus now again the XenvB4.

ChrisTERis, do you have any updates on the newsletter functionality?
It's something I would really like to start doing on my forum to help bring back users to my forum.

Also at one point you mentioned a classified system for XEN. Is that still in the works?

cdoyle 12-21-2020 11:41 PM

For anyone who wants to use this plugin, be aware that there appears to be an exploit in the 'newsletter.php' file.

My site was attacked today, and looks like they were trying to send out mail via this page. I've now since deleted the page entirely.

Since it appears that Chriteris' demo site has been deleted again, and he hasn't been back here since he posted them. I don't think we'll be able to get any support from him.

Are there any other coders around, who would be willing to look at this theme and see if there are any other vulnerabilities anywhere?

I really like this theme, but it needs support.

EDIT:
Here is what my host had to say about this page
The individuals are setting their name as a URL/image and it's being linked and sent. Here's the header portion:

Code:

To: maticielma@wp.pl
Subject: Unsubscription needs confirmation
X-PHP-Script: www.caraudiocentral.net/forums/dbseo.php for 1.20.181.16
X-PHP-Filename: /home/caraudio/public_html/forums/dbseo.php REMOTE_ADDR: 1.20.181.16
From: "Car Audio Central - Anything and Everything car audio"
Auto-Submitted: auto-generated
Message-ID: <20201222005958.736a035a8187@www.caraudiocentral.net>
MIME-Version: 1.0
Content-Type: text/html; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Priority: 3
X-Mailer: vBulletin Mail via PHP
Date: Mon, 21 Dec 2020 16:59:58 -0800

Then the actual contents has something like this:

Dear [Malicious URL Here][Malicious Image]


iA1 12-22-2020 06:56 AM

I will be setting up a new demo site for it. It seems like the newsletter functionality wasn't included, so deleting the file should be ok for now.

iA1 12-22-2020 07:06 PM

The demo is now available at https://www.vb4mobile.com/forum.php?styleid=18

cdoyle 12-22-2020 08:57 PM

Quote:

Originally Posted by iA1 (Post 2605282)

Looking good.
Are you going through and fixing things?

Have a request:
Would it be possible to update the card layout some?
I had some help with this from another member here, but take a look at how mine is currently.
https://www.caraudiocentral.net/foru...llation-faq-s/

The thread starter avatar is put inside the card, to me that looks better and takes up less space and allows for more cards to display on the page.

Do you think it's possible to do something like this in the official plugin? That way if there are updates, won't have to redo everything each time.

concepts 12-24-2020 05:11 AM

Quote:

Originally Posted by cdoyle (Post 2605285)
Looking good.
Are you going through and fixing things?

Have a request:
Would it be possible to update the card layout some?
I had some help with this from another member here, but take a look at how mine is currently.
https://www.caraudiocentral.net/foru...llation-faq-s/

The thread starter avatar is put inside the card, to me that looks better and takes up less space and allows for more cards to display on the page.

Do you think it's possible to do something like this in the official plugin? That way if there are updates, won't have to redo everything each time.

^^^ This. Your layout is MUCH cleaner than the original.

iA1 12-24-2020 06:59 PM

Quote:

Originally Posted by cdoyle (Post 2605285)
Looking good.
Are you going through and fixing things?

Yes, I am updating as well as trying fix any bugs and issues. Chris has given me permission to update the mod and redistribute.

Quote:

Have a request:
Would it be possible to update the card layout some?
I had some help with this from another member here, but take a look at how mine is currently.
https://www.caraudiocentral.net/foru...llation-faq-s/

The thread starter avatar is put inside the card, to me that looks better and takes up less space and allows for more cards to display on the page.

Do you think it's possible to do something like this in the official plugin? That way if there are updates, won't have to redo everything each time.
I tried to make it look similar. Have a look here: https://www.vb4mobile.com/forumdispl...f=7&styleid=18

iA1 12-24-2020 07:05 PM

Has anyone noticed that the moderation checkboxes for inline moderation do not work. The threads/posts do not get selected when you tick the checkbox. I couldn't figure it out. Does anyone know why it doesn't work?

concepts 12-25-2020 12:25 AM

1 Attachment(s)
Quote:

Originally Posted by iA1 (Post 2605312)
Has anyone noticed that the moderation checkboxes for inline moderation do not work. The threads/posts do not get selected when you tick the checkbox. I couldn't figure it out. Does anyone know why it doesn't work?

I noticed this yesterday. I'm spending the next few days to play around with this myself. Finally have some time instead of "asking favors" lol.

also, I decided to remove the thread starter avatar all together. While it does look cool, It felt redundant and made the display appear confusing in regards to flow. Simply highlighting and embolding the thread starter name looked clean enough for me. It's easy to get caught up in design overload and forget about user experience. I was able to accomplish Doyle's look, but the feedback was that it was a bit much on color/visual and took away from browsing the actual threads. So I'm not sure if that look is the best "out of the box" unless an alternate display is an option, while I initially wanted it myself, the simplified version seems far more user-friendly.

Any improvements I find/adjust I will report here as well.

cdoyle 12-25-2020 11:33 AM

Quote:

Originally Posted by iA1 (Post 2605311)
Yes, I am updating as well as trying fix any bugs and issues. Chris has given me permission to update the mod and redistribute.



I tried to make it look similar. Have a look here: https://www.vb4mobile.com/forumdispl...f=7&styleid=18

I love it!!
Looks great!
I really like the thread starter avatar within the box like that. Really cleans it up, but still provides that quick visual of who started the thread.

Is registration possible on your demo forum? Was going to try it out, but doesn't seem to allow me to register.

cdoyle 12-25-2020 11:46 AM

Quote:

Originally Posted by iA1 (Post 2605312)
Has anyone noticed that the moderation checkboxes for inline moderation do not work. The threads/posts do not get selected when you tick the checkbox. I couldn't figure it out. Does anyone know why it doesn't work?

On my site, the check boxes work when within a thread. And looks like I'm able to delete posts etc.

But I also just noticed, when viewing all posts within a forum, the check boxes work, but I don't seem to have any way to do anything with them. I don't have any inline options. Guess I never noticed that before.

cdoyle 01-05-2021 05:43 PM

Do you know when you might be releasing the updated version?


All times are GMT. The time now is 08:34 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.02268 seconds
  • Memory Usage 1,938KB
  • 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
  • (21)bbcode_code_printable
  • (31)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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