Well, tried a few things, but it didn't work.
Here is what I'm using to display the thumbnails now
PHP Code:
// Thumbnail includer hack
ob_start();
require("../test.php");
$thumbnails = ob_get_contents();
ob_end_clean();
// Thumbnail includer hack end
So is this right to make it optional?
PHP Code:
if($bbuserinfo['showphoto']==1) // i.e. it's set to yes
{
// Thumbnail includer hack
ob_start();
require("../test.php");
$thumbnails = ob_get_contents();
ob_end_clean();
// Thumbnail includer hack end
}
And where should it go?
Sorry for all the questions.