Ok, we are gonna fix this.
A few steps to watch:
Open functions.php and find:
PHP Code:
eval("\$post[buddy] = \"".gettemplate("postbit_buddy")."\";");
Add after it:
PHP Code:
if ($post[glow]!="" AND $post[italic]=="1") {
eval("\$storeextraglow = \"".gettemplate('store_extra_glow_italic')."\";");
} elseif ($post[glow]!="") {
eval("\$storeextraglow = \"".gettemplate('store_extra_glow')."\";");
} elseif ($post[italic]=="1") {
$storeextraglow="<i>$post[username]</i>";
} else {
$storeextraglow="$post[username]";
}
Save and close functions.php
Then be sure that you have added the following templates:
Name: store_extra_glow_italic
Content:
Quote:
<font style="filter:glow(color=$post[glow], strength=3);height=1px"><i>$post[username]</i></font>
|
Name: store_extra_glow
Content:
Quote:
<font style="filter:glow(color=$post[glow], strength=3);height=1px">$post[username]</font>
|
And finally open the template: postbit
Find: $post[username]
Change it to: $storeextraglow
Good luck.