Welcome to vbmods.rocks! Get FREE and paid vBulletin mods, plugins, addons, API extensions, custom modules, custom BB Codes, vBCloud mods, CORE hacks, JS hacks, custom coding by Glenn, an ex-vBulletin Developer. You must register before you can post, download the files or copy the code from the free plugins.
Most of the vBulletin 5 mods here in vBMods.rocks should work with vBulletin 6 but it's not a guarantee due to unforeseen frontend and backend changes introduced in vBulletin 6. We have tested the compatibility for some of the mods here. Please check the compatibility list here.
Thanks for giving me access. I see what's going on.
The Autoblocker script by Usercentrics temporarily blocks all <script> tags on the page by setting them with type="plain/text" until user consent is granted. It excludes those script tags that have data-uc-allowed="true" attribute (the mod script in your case) but the mod is still not working because it is dependent on jQuery which is blocked by Autoblocker at that point. Try whitelisting the domain where jQUery is loaded from, which is https://ajax.googleapis.com/
I tried Gemini and this is its suggestion. Option 1 requires editing existing vBulletin template (the same thing we did to the mod script) which is not recommended. So I prefer to do Option 2 or 3.
Advantage: More efficient than Solution 2. Since the change is static, there's no overhead of dynamic replacement.
Disadvantage: May cause a template merge conflict whenever you upgrade the forum. But it wouldn't be that hard to resolve.
Solution 2:
Go to AdminCP > Style > Replacement Variable Manager.
Click [Add New Replacement Variable] link for the target style/theme.
Do the same for all active styles/themes on your forum.
Advantage: This will never cause a template merge conflict.
Disavantage: Less efficient since this replacement will be executed on every page load. May be slow on a busy forum.
Last edited by glennrocksvb; 04-20-2026, 02:18 PM.
Comment