PDA

View Full Version : showthread tagbit commas -_-


Dr.CustUmz
05-03-2014, 08:48 PM
so im trying to remove the commas in the taglist that appears on showthread.

ive searched templates / php files / and phrases and have yet to come across this comma... its kind of bugging me, i want it gone =/

https://vborg.vbsupport.ru/attachment.php?attachmentid=149009&stc=1&d=1399153708

vBNinja
05-03-2014, 09:04 PM
Edit the file: /includes/functions_bigthree.php

Find:
$tag_list .= ($tag_list != '' ? ', ' : '');

Replace with:
$tag_list .= ($tag_list != '' ? ' ' : '');

Don't forget to save the file