Create a php page named add.php and insert your sharingzone php code in it and upload the file to the forum root.
Login to admincp
in to products and plugins and add a new plugin
product: Vbulletin
hook:global_start
execution time:5
code:
activate plugin: yes
put
$wsadd
in the template where you want to show adds.. The best place is in navbar template at the end so that it is visible in every page for maximum revenue.
Thats it..
Login to admincp
in to products and plugins and add a new plugin
product: Vbulletin
hook:global_start
execution time:5
code:
Code:
ob_start();
include('add.php');
$wsadd = ob_get_contents();
ob_end_clean();
activate plugin: yes
put
$wsadd
in the template where you want to show adds.. The best place is in navbar template at the end so that it is visible in every page for maximum revenue.
Thats it..