Quote:
Originally Posted by noppid
In the showthread_postbit_create hook put the code.
PHP Code:
$is_admin = false; $is_mod = false; if( is_member_of($post,6) ) $is_admin = true; if( is_member_of($post,7) ) $is_mod = true;
In the postbit template put.
PHP Code:
<if condition="$is_admin"> CHANGE XX TO ADMIN USER GROUP </if> <if condition="$is_mod"> CHANGE X TO MODERATOR USER GROUP </if>
This is not tested, but the first post was wrong completely.
|
hm
Fatal error: Only variables can be passed by reference in /home/account/domains/mydomain.com/public_html/forum/showthread.php(1031) : eval()'d code on line 19
Quote:
Originally Posted by gio~logist
Why not just do this?
Code:
<if condition="is_member_of(6,$post[userid])">
Something here
</if>
<if condition="is_member_of(7,$post[userid]">
Something here
</if>
|
Strange, when I try to save that code my page turns white, nothing happens and nothing gets saved???
Andreas posted the right conditional for this purpose once but I cant find his post anymore
Ok basically what I want to achieve is this:
https://vborg.vbsupport.ru/showthrea...30#post1003930