The Arcive of vBulletin Modifications Site. |
|
|
#1
|
||||
|
||||
|
hey guys
i have a question for this sites developers u guys have the modifications which a person disd on their profile i want to the same thing for my site ![]() just like the one in the picture above thnnx |
|
#2
|
|||
|
|||
|
Search and you shall find, not only in this forum too.
|
|
#3
|
||||
|
||||
|
wat do i serach for tho i i dnt kno te name of this hack is its out
|
|
#4
|
|||
|
|||
|
I saw it somewhere before, i am pretty sure it wasnt free, cant remember... I think its from the same guy who made vBcart, if i recall its vBGeek.
|
|
#5
|
||||
|
||||
|
I modified this hack to do something like what vb does here: https://vborg.vbsupport.ru/showthread.php?t=61020 Basically, all vb is doing is listing the threads started by those users in certain forums, which is what that hack does.
|
|
#6
|
||||
|
||||
|
hey man i tried to edit that but it didnt work for meh i did everything and it gave me some errors i fixed the errors than it gave me someother errors can u help me to work this out please
editt i fixed he problem but now it dost show anythreads is tehre any line where we supposed to pud the forum id's?? |
|
#7
|
||||
|
||||
|
i get the error below what im i doin wrong guys help me
Warnung: Wrong parameter count for implode() in /member.php (Zeile 499) Fatal error: Call to a member function on a non-object in /kunden/137092_81737/www.e-paylas.de/forum/member.php on line 501 editted code Code:
// THREADS
// By assassingod
// Dont forget to change the variables on line 394
$limit = '5'; // Enter the number of maximum threads you want to be displayed
$forumids = implode (78,75,76 ) ;
$getthreads = $DB_site->query("
SELECT threadid,title,dateline
FROM " . TABLE_PREFIX ."thread
WHERE postuserid = '$userinfo[userid]' AND forumid NOT IN ('$forumids')
ORDER BY dateline DESC
LIMIT $limit
");
original code Code:
// THREADS
// By assassingod
// Dont forget to change the variables on line 394
$limit = '5'; // Enter the number of maximum threads you want to be displayed
$forumids = implode ("', '", get_noaccess_forumids()) ;
$getthreads = $DB_site->query("
SELECT threadid,title,dateline
FROM " . TABLE_PREFIX ."thread
WHERE postuserid = '$userinfo[userid]' AND forumid NOT IN ('$forumids')
ORDER BY dateline DESC
LIMIT $limit
");
while($threads = $DB_site->fetch_array($getthreads))
{
exec_switch_bg();
$threads['date'] = vbdate($vboptions['dateformat'],$threads['dateline']);
$threads['time'] = vbdate($vboptions['timeformat'],$threads['dateline']);
eval('$usersthreads .= "' . fetch_template('memberinfo_usersthreads') . '";');
}
|
|
#8
|
||||
|
||||
|
Mine looks a bit different from yours. I use this thread a couple of times in the member.php page, here is one of them:
Code:
$limit = '10'; // Enter the number of maximum threads you want to be displayed
// for Vines forums
$getthreads = $DB_site->query("
SELECT threadid,title,dateline,forumid
FROM " . TABLE_PREFIX ."thread
WHERE postuserid = '$userinfo[userid]' AND forumid IN ('62','63','64','65')
ORDER BY dateline DESC
LIMIT $limit
");
$valid = $DB_site->num_rows($getthreads);
if ($valid >= 1 )
$numvines=true;
while($threads = $DB_site->fetch_array($getthreads))
{
exec_switch_bg();
$threads['date'] = vbdate($vboptions['dateformat'],$threads['dateline']);
$threads['time'] = vbdate($vboptions['timeformat'],$threads['dateline']);
eval('$usersthreads .= "' . fetch_template('memberinfo_usersthreads') . '";');
}
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|