MyBB Community Forums

Full Version: Change language variable by plugin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
Is there any way to change language variable (online_note in index) by plugin?
can you tell us how does it appear now & what exactly you want to change ? btw, what is your forum url ?
(2017-08-21, 01:23 PM).m. Wrote: [ -> ]can you tell us how does it appear now & what exactly you want to change ? btw, what is your forum url ?

I want to edit online_note by a plugin, I know I can do that manually in ACP but I need to that by a plugin.
I'm writing plugin on localhost, so I can't give you forum url.
Could you not just hook in after it loads the variable and change it manually?
Something like
// hook
function myfunc()
{
        global $lang;

        if($lang->online_note) $lang->online_note = 'your special new text';
}