I would like to make lil icons for each user group and then make them all show up in the post bit so it would show images for all the groups ther a member of.
cann any body show me the codiing to add to the post bit and i could probly take it from there
thank you.
I would like to make lil icons for each user group and then make them all show up in the post bit so it would show images for all the groups ther a member of.
cann any body show me the codiing to add to the post bit and i could probly take it from there
thank you.
All you have to do is setup a condition based on whatever group they are in and add it to your postbit or postbit_legacy template where you want it to appear under their avatar some place.
PHP Code:
<if condition="is_member_of($post, X)"> // <--- change X to the group number
/path/to/image
</if>
All you have to do is setup a condition based on whatever group they are in and add it to your postbit or postbit_legacy template where you want it to appear under their avatar some place.
PHP Code:
<if condition="is_member_of($post, X)"> // <--- change X to the group number
/path/to/image
</if>
thanks for your help
I couldent get it to work So i had to make it like this
I always use a full url path for those images, you can actually put any html you want in there. Also, you can add as many of those statements as you want if you want more images, text etc. based on user groups.
I always use a full url path for those images, you can actually put any html you want in there. Also, you can add as many of those statements as you want if you want more images, text etc. based on user groups.