In the xml file or the plugin itself find this code:
Code:
<a href="bop5sigignore.php?do=remuser&id='.$post[userid].'&p='.$post[postid].'"><img src="'.$vbulletin->stylevars['imgdir_misc']['imagedir'].'/sig_show_arrow.png" border="0" width="'.$vbulletin->options[bop5sis_iconsize].'" align="absmiddle" alt="'.$vbphrase[bop5_unignoresig].'" /> '.$vbphrase[bop5_unignoresig].' <img src="'.$vbulletin->stylevars['imgdir_misc']['imagedir'].'/sig_show_arrow.png" width="'.$vbulletin->options[bop5sis_iconsize].'" border="0" align="absmiddle" alt="'.$vbphrase[bop5_unignoresig].'" /></a>
and
replace it with:
Code:
<a href="bop5sigignore.php?do=remuser&id='.$post[userid].'&p='.$post[postid].'">'.$vbphrase[bop5_unignoresig].'</a>
Then find this code:
Code:
<img src="'.$vbulletin->stylevars['imgdir_misc']['imagedir'].'/sig_ignore_x.png" border="0" width="12" alt="'.$vbphrase[bop5_ignoresig].'" />
Replace with:
Code:
<ispan title="'.$vbphrase[bop5_ignoresig].'"><b>X</b></span>
That will remove the icons from the show signature link and replace the X image with a bold text
X.