this has always worked for me... it's old and might need some adjustments.
Code:
Disables all parsing of links.
================================================
================================================
newthread.php
find:
$checked['parseurl'] = HTML_CHECKED;
replace with:
$checked['parseurl'] = HTML_UNCHECKED;
================================================
================================================
newreply.php
find:
$checked['parseurl'] = HTML_CHECKED;
replace with:
$checked['parseurl'] = HTML_UNCHECKED;
================================================
================================================
private.php
find:
'parseurl' => true,
replace with
'parseurl' => false,
================================================
================================================
includes/functions_newpost.php
find:
function convert_url_to_bbcode($messagetext)
{
below add:
return $messagetext;
find:
'parseurl' => iif($post['parseurl'], HTML_CHECKED),
replace with:
'parseurl' => iif($post['parseurl'], HTML_UNCHECKED),
================================================
================================================
includes/functions_bbcodeparse.php
find:
// standard URL hyperlink
return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";
replace with:
// standard URL hyperlink
return "$text";
find:
$text = htmlspecialchars_uni(substr($tmp, 0, 35) . '...' . substr($tmp, -15));
replace with:
$text = htmlspecialchars_uni(substr($tmp, 0, 500));
=================================================
in showthread.php find:
$showsig = iif($bbuserinfo['signature'], 1, 0);
under add:
if (!isset($checked['parseurl']))
{
$checked['parseurl'] = HTML_UNCHECKED;
}
=================================================
showthread_quickreply
<input type="hidden" name="parseurl" value="1" />
<input type="hidden" name="parseurl" value="0" />