First I would like first thank you for all of your hard work with this excellent meter.
I was wondering if you could tell me where I could find the setting and or coding to allow the names to be longer.
I have the date turned off but becaseu of my 7 character clan tags all or most of the names still get cut off. And since my tags is so long it only shows athe first character or so of the name.
Thank you in advance for any help on this and once again that you for everything. I have noticed you do quite a bit as your name is on many forums as a developer and you seem to stay active in all
Thank you
JJ
Please enter your server specs in your user profile! 😢
PhoenixOffline
Joined: Mar 18, 2004
Posts: 1543
Location: Netosphere
The name length is controlled here, about line 131 of blocks/block-Donat_o_Meter.php,$dname = (strlen($row_Recordset3['name']) > 10) ? substr($row_Recordset3['name'],0,10).'...' : $row_Recordset3['name'];In 2 places you will see 10 which limits the length to 10 characters - you can change those figures, but excessive length will result in display issues unless your column is wide enough.