Click anywhere to close this dialog

Farewell

Great is the art of beginning, but greater is the art of ending
Henry Wadsworth Longfellow

I announce that I cease all development and activity in the programming universe indefinitely. My career has reached the turning point I was not expecting for at least another year, leaving me highly off guard and without laid-out plans for this hobby's continuity. I have begun a 5-year residency program in Neurosurgery which is clearly not compatible, time-wise, with programming.

I gave in all my passion for developing, and you gave me back your loyalty and trust, even when I did not deserve that much. Now it is the time for payback. I release all my present and past work as Open Source software, in the hope some talented developer will continue maintaining and expanding my vision of a modern, sleek forum software. The intrinsic flexibility of MyBB is the true hidden gem of an otherwise outdated codebase; I do hope the project can continue and be updated complying to the latest coding standards.

I hereby thank Euan, kawaii, andrewjs18, Ben, Matt, Omar G., effone, Eric J., Devilshakerz, Wildcard, JordanMussi and all the other team members I have had the opportunity to work with when I was a MyBB team member. I thank Tomm M, my mentor, who inspired me to pick up coding with his piece-of-art plugins. And finally, I thank all of you MyBBoost subscribers who have helped me getting through my toughest university years economically.

Yours sincerely, Filippo

Jscript Conflict?

18 Sep 2020
#1
This issue is marked as solved
Hello!

I purchased this addon, as I absolutely love the concept and what it promises :)

Unfortunately, while I got it to work seamlessly on a clean install, it appears to be at odds with something on my actual site. This is what is happening when the thread loads up, and the posts reach the end of "page one"

[Image: d068190d33b9cf2e35fc7950a7aef390.png]
[Image: 636e0ee8768d8661f9d4c8dd15011c78.png]


I'm not very good with code, but my guess is that it is conflicting with another addon's scripting? I did carefully install each file one at a time and the error is still occuring.

I understand that you are on hiatus, so please, no pressure. When you are able to assist, I would be very appreciative.

A link to my site;
https://blood-ties.net/rp
Shade 18 Sep 2020
#2
Open up your showthread template and get rid of the following piece of code:

<script type="text/javascript">
    $(
".author_avatar img").error(function () {
        $(
this).unbind("error").closest('.author_avatar').remove();
    });
</
script
The error() function has been discontinued by jQuery and it now produces a JS error which blocks all other scripts.
ThistleProse likes this post
ThistleProse 18 Sep 2020 Edited
#3
Hi Shade, thanks for the quick response!

I removed that piece of code from all the layouts, and cleared the site cache and my browser, but the error persists.

A quick disabling of the Enhanced Account Switcher says that that is what is the issue. With that disabled, the Endless plugin works perfectly.

Are you able to assist with getting them to play nice?
Shade 18 Sep 2020
#4
You have another JS error there:

$(".more_info").click(function () {
    var  = $(
this).find(".title");
    if (!.
length) {
        $(
this).append('<span class="title">' + $(this).attr("title") + '</span>');
    } else {
        .
remove();
    }
}); 
The variable is missing. It should be:

$(".more_info").click(function () {
    var 
myVar = $(this).find(".title");
    if (!
myVar.length) {
        $(
this).append('<span class="title">' + $(this).attr("title") + '</span>');
    } else {
        
myVar.remove();
    }
}); 
ThistleProse likes this post
ThistleProse 18 Sep 2020
#5
Sorry, where am I going to fix this error?
Shade 18 Sep 2020 Edited
#6
Same template I guess looking at the frontend code.
Edit: it's headerinclude.
ThistleProse 18 Sep 2020
#7
Found it! Made the change. Still no dice.

Do you want access to the site? I have an account set up for that purpose because I'm terribly n00bish when it comes to code lol.
Shade 18 Sep 2020
#8
If you can give me a temp admin account that would be nice. You can reach also me on Discord: Shade#7731.
ThistleProse 18 Sep 2020
#9
Can do; I sent you a friend request on Discord (I'm ThitstleProse#0459). I'll send you account details via PM in the mean time :)
Shade 18 Sep 2020
#10
The issue was located in Enhanced Account Switcher, which hooks into postbit and assumes its functions are loaded (but xmlhttp does not load global.php, so it has to load it up again).