For you guys who couldn't get it to display, I did by doing this.
Chang:
Code:
if ($post[NP]!="") {
eval("\$post[nowplaying] = \"".gettemplate("postbit_nowplaying")."\";");
} else {
$post[NP]="";
}
to:
Code:
if ($post[NP]!="") {
eval("\$post[nowplaying] = \"".gettemplate("postbit_nowplaying")."\";");
} else {
$post[NP]="";
}
I have no idea why that fixes it, but it did for me =P.