Zachariah
03-17-2009, 10:00 PM
Hello,
I took on a task to make bookmarksite operate with a few more features and ended up also creating data for meta description. The code needs some optimization, but you will get the idea.
The point was to get "pagetext" data from the 1st post in the thread to display on showthread.php.
In file includes\function.php, find function: " fetch_threadinfo"
FIND:
SELECT IF(visible = 2, 1, 0) AS isdeleted,
REPLACE WITH:
SELECT IF(thread.visible = 2, 1, 0) AS isdeleted,
ABOVE:
thread.*
Add:
" . iif($vbulletin->options['threadpreview'] > 0 AND THIS_SCRIPT == 'showthread', 'post.pagetext AS preview, ') . "
ABOVE:
$tachyjoin
Add:
" . iif($vbulletin->options['threadpreview'] > 0 AND THIS_SCRIPT == 'showthread', "LEFT JOIN " . TABLE_PREFIX . "post AS post ON(post.postid = thread.firstpostid)") . "
BELOW:
WHERE thread.threadid = $threadid
");
Add:
if($vbulletin->options['threadpreview'] > 0 AND THIS_SCRIPT == 'showthread')
{
$threadcache["$threadid"]['preview'] = strip_quotes($threadcache["$threadid"]['preview']);
$threadcache["$threadid"]['preview'] = preg_replace ('/\n(\s*)/', " ", $threadcache["$threadid"]['preview']);
$threadcache["$threadid"]['preview'] = preg_replace ('/\r(\s*)/', " ", $threadcache["$threadid"]['preview']);
$threadcache["$threadid"]['preview'] = str_replace(" ", " ", $threadcache["$threadid"]['preview']);
$threadcache["$threadid"]['preview'] = htmlspecialchars_uni(fetch_censored_text(fetch_tri mmed_title(strip_bbcode($threadcache["$threadid"]['preview'], false, true), $vbulletin->options['threadpreview'])));
}
This will create $threadinfo['preview'] within showthread.php.
- This value can be added to the meta tag description in the $headerinclude to give each thread something other than $thread['title'].
We can also edit showthread.php
Find:
$bookmarksite['link'] = str_replace(
array('{URL}', '{TITLE}'),
array(urlencode($vbulletin->options['bburl'] . '/showthread.php?t=' . $thread['threadid']), urlencode($thread['title'])),
$bookmarksite['url']
);
Replace:
$bookmarksite['link'] = str_replace(
array('{URL}', '{TITLE}', '{DESCRIPTION}'),
array(urlencode($vbulletin->options['bburl'] . '/showthread.php?t=' . $thread['threadid']), urlencode($thread['title']), urlencode($thread['preview'])),
$bookmarksite['url']);
This will allow {DESCRIPTION} to be added to be added to submitting bookmark URL's to fill out the textarea on submission vs. copy and paste.
EX: Digg
http://digg.com/submit?phase=2&url={URL}&title={TITLE}&bodytext={D ESCRIPTION}
I took on a task to make bookmarksite operate with a few more features and ended up also creating data for meta description. The code needs some optimization, but you will get the idea.
The point was to get "pagetext" data from the 1st post in the thread to display on showthread.php.
In file includes\function.php, find function: " fetch_threadinfo"
FIND:
SELECT IF(visible = 2, 1, 0) AS isdeleted,
REPLACE WITH:
SELECT IF(thread.visible = 2, 1, 0) AS isdeleted,
ABOVE:
thread.*
Add:
" . iif($vbulletin->options['threadpreview'] > 0 AND THIS_SCRIPT == 'showthread', 'post.pagetext AS preview, ') . "
ABOVE:
$tachyjoin
Add:
" . iif($vbulletin->options['threadpreview'] > 0 AND THIS_SCRIPT == 'showthread', "LEFT JOIN " . TABLE_PREFIX . "post AS post ON(post.postid = thread.firstpostid)") . "
BELOW:
WHERE thread.threadid = $threadid
");
Add:
if($vbulletin->options['threadpreview'] > 0 AND THIS_SCRIPT == 'showthread')
{
$threadcache["$threadid"]['preview'] = strip_quotes($threadcache["$threadid"]['preview']);
$threadcache["$threadid"]['preview'] = preg_replace ('/\n(\s*)/', " ", $threadcache["$threadid"]['preview']);
$threadcache["$threadid"]['preview'] = preg_replace ('/\r(\s*)/', " ", $threadcache["$threadid"]['preview']);
$threadcache["$threadid"]['preview'] = str_replace(" ", " ", $threadcache["$threadid"]['preview']);
$threadcache["$threadid"]['preview'] = htmlspecialchars_uni(fetch_censored_text(fetch_tri mmed_title(strip_bbcode($threadcache["$threadid"]['preview'], false, true), $vbulletin->options['threadpreview'])));
}
This will create $threadinfo['preview'] within showthread.php.
- This value can be added to the meta tag description in the $headerinclude to give each thread something other than $thread['title'].
We can also edit showthread.php
Find:
$bookmarksite['link'] = str_replace(
array('{URL}', '{TITLE}'),
array(urlencode($vbulletin->options['bburl'] . '/showthread.php?t=' . $thread['threadid']), urlencode($thread['title'])),
$bookmarksite['url']
);
Replace:
$bookmarksite['link'] = str_replace(
array('{URL}', '{TITLE}', '{DESCRIPTION}'),
array(urlencode($vbulletin->options['bburl'] . '/showthread.php?t=' . $thread['threadid']), urlencode($thread['title']), urlencode($thread['preview'])),
$bookmarksite['url']);
This will allow {DESCRIPTION} to be added to be added to submitting bookmark URL's to fill out the textarea on submission vs. copy and paste.
EX: Digg
http://digg.com/submit?phase=2&url={URL}&title={TITLE}&bodytext={D ESCRIPTION}