Addons are custom features that you can add to your Vanilla forum. Addons are created by our community of developers and people like you!
These addons are for people who downloaded and set up their own Vanilla forum. Compare your downloaded version with the version requirements on the right.
If your Vanilla forum is hosted at VanillaForums.com, this addon may already be installed there.
We review addons to make sure they are safe and don't cause bugs. An addon is considered to be "Vanilla Approved" once our review process is complete.
| Version | Released |
|---|---|
| 0.5.2 | August 2007 |
/plugins folder to install it.Optimize page load (on the client side) by reducing the number of requests and by compressing the request. The compression is made by your web server; the directive for Apache 1.3 and 2+ are available in package (LowCalVanilla/htaccess/.htaccess). If you are updating to version 0.5.0, read the documentation and your main .htaccess before updating the add-on
Require Vanilla 1.1.3+
// Check the Low-Cal Vanilla is installed
if (!empty($Configuration['LOWCALVANILLA_TOOLS_PATH'])) {
// Include Low-Cal Vanilla tools.
// Important: Use require_once or include_once to not load it again if it is already done.
require_once($Configuration['LOWCALVANILLA_TOOLS_PATH']);
// Add your script
LowCalVanilla_AddScript($Context, $Head, 'extensions/MyExtension/script.js');
// Add a library
// Use the position argument (300 by default) to be sure it will be added first
LowCalVanilla_AddScript($Context, $Head, 'extensions/MyExtension/jQuery-min.js', 100);
} else {
$Head->AddScript('extensions/MyExtension/jQuery-min.js');
$Head->AddScript('extensions/MyExtension/script.js');
}
0.4.3:
0.4.2:
0.4.1:
0.4.0:
0.3.6.a (archive):
0.3.5.a:
0.3.5:
0.3.4:
0.3.3:
0.3.3:
0.3.2:
0.3.1:
0.3.0:
0.2.1:
0.2.0: