Quote:
Originally Posted by kpmedia
|
This actually worked perfectly with older vBulletin version (after some changes). What changed so it's not longer possible to have a plug-in display data in this way?
I tried using a simpler plug-in that just contained:
PHP Code:
ob_start();
include('../wp-load.php');
include('../wp-content/themes/mytheme/header.php');
$wp_header = "Bla";
ob_end_clean();
But that didn't show anything either...
Any ideas on this?