That requires a hack and there are no hacks released yet for VB3Shovel said:Aye, I noticed that too - I'd got used to having them capped at 3 lines...
I will look into it but that may require a hack.Embattle said:Is there any way to limit the Font size, seems some people might be tempted to use the largest font just because then can?
You could just manually edit them, via the gift of slappage?Deebs said:I will look into it but that may require a hack.
/me goes to look
Nah that’s fine Tom. Deebs is a tad long but I cant whinge about thatTom said:In all honesty, is my sig too big? I'll change it if it annoys people, but hopefully its not as annoying as those 3 page long windbag 'cast 45 lame' type sigs.
I have changed minekan said:Nah that’s fine Tom. Deebs is a tad long but I cant whinge about thattake a look around the forums. There are some silly ones already.
have posted a msg to him, refresh that thread.Embattle said:Three lines was my old setting although my personal hates can be imgs in sigs and the sig Conchabar has, its utterly pointless https://forums.freddyshouse.com/showthread.php?p=2334#post2334
Title Description Default Max Len Display Size Reg. Expression Display Page
Maximum lines for signatures Set maximum line for each user signature on this forum, numeric only! 4 4 ^[0-9]$ Options: Other
Maximum characters for signatures Set maximum characters for each user signature on this forum, numeric only! 4 4 ^[0-9]$ Options: Other
// get signature
if ($post['showsignature'] AND $vboptions['allowsignatures'] AND trim($post['signature']) != '' AND (!$bbuserinfo['userid'] OR $bbuserinfo['showsignatures']) AND $sigperms[$post['userid']])
{
if (!isset($sigcache["$post[userid]"]))
{
$parsed_postcache['skip'] = true;
$post['signature'] = parse_bbcode($post['signature'], 'nonforum', $vboptions['allowsmilies']);
$sigcache["$post[userid]"] = $post['signature'];
}
else
{
$post['signature'] = $sigcache["$post[userid]"];
}
}
else
{
$post['signature'] = '';
}
$maxsigmod_maxlines_field = 'field6';
$maxsigmod_maxchars_field = 'field7';
// get signature
if ($post['showsignature'] AND $vboptions['allowsignatures'] AND trim($post['signature']) != '' AND (!$bbuserinfo['userid'] OR $bbuserinfo['showsignatures']) AND $sigperms[$post['userid']])
{
if (!isset($sigcache["$post[userid]"]))
{
$parsed_postcache['skip'] = true;
if (isset($bbuserinfo[$maxsigmod_maxlines_field]))
{
if ($bbuserinfo[$maxsigmod_maxlines_field] != '')
{
$num_lines = (int) $bbuserinfo[$maxsigmod_maxlines_field];
$multiline_sig = explode("\n", $post['signature']);
if (count($multiline_sig) > $num_lines)
{
// ok this sig is too big, we will cut it down to size.
$post['signature'] = implode("\n", array_slice($multiline_sig, 0, $num_lines));
} // if
} // if
} // if
if (isset($bbuserinfo[$maxsigmod_maxchars_field]))
{
if ($bbuserinfo[$maxsigmod_maxchars_field] != '')
{
$num_chars = (int) $bbuserinfo[$maxsigmod_maxchars_field];
if (strlen($post['signature']) > $num_chars)
{
// ok this sig is too big, we will cut it down to size.
$post['signature'] = substr($post['signature'], 0, $num_chars) . '...';
} // if
} // if
} // if
$post['signature'] = parse_bbcode($post['signature'], 'nonforum', $vboptions['allowsmilies']);
$sigcache["$post[userid]"] = $post['signature'];
}
else
{
$post['signature'] = $sigcache["$post[userid]"];
}
}
else
{
$post['signature'] = '';
}
Embattle said:Got it set to 3...time to test.
/Wonders to DAoC forum
Embattle said:Well it seems to be although some have quotes in their sigs which doesn't seem to be taken into account properly, it must only recognise it as a line or something.
But then I won't be able to have links there. Can you not ban certain tags?Deebs said:Thats easy enough to fix, no BB code in sigs![]()
Will said:But then I won't be able to have links there. Can you not ban certain tags?