Quote:
Originally Posted by maidos
good hack, but how do i add the background for "thank you" mods
I notice that the signatures has the same background aswell, how do i disable it
|
for thank you mods
find in postbit_legacy template
PHP Code:
$template_hook[postbit_userinfo_right_after_posts
replace with this
PHP Code:
<div>$template_hook[postbit_userinfo_right_after_posts</div>
for signatures you can this way disable it
find in postbit_legacy template this code
HTML Code:
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
replace with this code
HTML Code:
<if condition="$post['signature']">
<!-- sig -->
__________________<br />
$post[signature]
<!-- / sig -->
</if>
[/HTML]