@jo8jo
this should work (untested code)
search
Code:
$article_get = vB::$db->query_read('
SELECT
article.pagetext,
article.previewimage,
node.url,
node.publishdate,
node.parentnode,
replace with
Code:
$article_get = vB::$db->query_read('
SELECT
article.pagetext,
article.previewimage,
article.threadid,
node.url,
node.publishdate,
node.parentnode,
search
Code:
<span>'. $article['previewtext'] .'</span> <a href="/content.php?r=' . $article['nodeid'] . '-' . $article['url'] . '">More</a>';
$article_neu['htmlcaptionname'] = 'htmlcaption' . $article['nodeid'] ;
$article_neu['picture'] = '<a href="/content.php?r=' . $article['nodeid'] . '-' . $article['url'] . '">
replace with
Code:
<span>'. $article['previewtext'] .'</span> <a href="/showthread.php?t=' . $article['threadid'] . '-' . article['url'] . '">More</a>';
$article_neu['htmlcaptionname'] = 'htmlcaption' . $article['nodeid'] ;
$article_neu['picture'] = '<a href="/showthread.php?t=' . $article['threadid'] . '-' . $article['url'] . '">
@mmoore5553
It's pulling whatever is stored by vbulletin as article preview picture. Please check the last FAQ question.
@blackracoon
everything looks fine coding wise, but firebug tells me that there is a jquery error when i open your site
Code:
$("#slider") is null
Line 355
I do not know where that is comeing from. Can you try to include a different jquery file (not the vbulletin version) and see if that does fix it?