PDA

View Full Version : Set plugin in the right place


vbronald
07-09-2009, 08:11 PM
I've add a simple plugin with the line
include('./customcode/test.php');
When I start load the page and so also the file test.php with the code (for now)
print("qqq");
the "qqq" all-way's shows up in the top of the page.
I've tried this in several hooks. And it seems that the hook is not positioning the "qqq" to the right place.

How can I make it to display the "qqq" in the template hook "$template_hook[postbit_userinfo_right]"?

Please help me out on this one :)
Many Thanks!

omardealo
07-19-2014, 03:18 AM
Hook : postbit_display_start

$var = 'qqq';
$template_hook[postbit_userinfo_right] .= $var;