Bleistivt
ModeratorBleistivt Moderator
Reactions
-
Re: How to put some custom PHP code at the top of every page in Vanilla
Don't edit core files. You can put a bootstrap.before.php in you /conf/ directory, which will be excecuted on every pageload before vanilla bootstraps itself. We could probably help you better, if yo… (View Post)1 -
Re: Forced profile update
<?php if (!defined('APPLICATION')) exit();$PluginInfo['RedirectProfile'] = array( 'Name' => 'RedirectProfile', 'Description' => '', 'Version' => '1', 'Author' => 'Bleistivt',);class Re… (View Post)3 -
Re: Reload config.php on shared hosting?
The config is read in every pageload. The only thing that can interfere with this is if you have APC enabled, which it will opcache the config.php Before you take any steps though, check if changing … (View Post)3 -
Re: can i get some details of comment integration posts from WP to Vanilla?
Vanilla basically visits you worpress page and extracts the information using this function: https://github.com/vanilla/vanilla/blob/master/library/core/functions.general.php#L853 You can override th… (View Post)1 -
Snippet Plugins
This aims to be a complete collection of plugins that have been posted in a discussion but are not available in the addons repository. These are mostly small plugins that solve very specific problems… (View Post)14