I searched for tutorials but i didn't found any useful tutorial. I want to create simple plugin which add "123" to header of every pages of forum.
I tried to go to admin panel -> create new plugin. But i don't know what hook i need to display "123" in header.
I will be very thankful for any help.
Assuming vBulletin 4 and above:
Create a Product
Add a Plugin to your Product
In PHP code enter the following:
$template_hook['mycustommesage'] = 'hello world';
Update your header template to include the plugin output
Whereever you want you plugin output to appear add:
{vb:raw template_hook.mycustommesage}