Posts: 146 Offline
Age: 23
Joined: 06/03/2012
Points: 375
Hey Dusty, loving all of these lil mods<3 Just wanted to pop in and say that lol.
Posts: 92 Offline
Age: N/A
Joined: 01/18/2013
Points: 246
Made a slight addition to the shoutbox code on my own site to unlink guest names for consistency, figured I'd share. Only works when user group prefix/suffix is set to false because laziness and unsure of how to go about that.
Replace
CODE |
a.find('.sbr_nn a').text(msg_arr['nn']).attr('href', '/index.php?showuser=' + msg_arr['id']) |
with
CODE |
a.find('.sbr_nn a').text(msg_arr['nn']).attr('href', '/index.php?showuser=' + msg_arr['id']) if(msg_arr['id'] == 0){ a.find('.sbr_nn').text(msg_arr['nn']) } |