MyBB Community Forums

Full Version: [Paid Support] Hot Thread List in Portal.php Plugin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hai there, please help me to realize my Idea to show list of hot thread in the portal.php using plugins/mod.

Please PM me if you can. I will be pay using PayPal.

Thanks
Anyone please help me
Hahahah pengen ngikutin kaskus ya Gan :p
Moved to requests area.
(2010-08-14, 01:11 AM)shopyan Wrote: [ -> ]Hahahah pengen ngikutin kaskus ya Gan :p

Bukan gan, saya cuman pingin bikin forumnya seperti blog yang bisa nampilin 'popular post/popular thread' sehingga member saya jadi dimudahkan....

Kalo ngikuti kaskus susah gan membernya aja udah jutaan gitu hahahah... tapi siapa tau beberapa taun yg akan datang forum yg ingin ade buat bisa nyaingin kaskus hahahaCool
Please use English Wink
Untuk Indonesian Support, join (bergabung disini) here http://community.mybb.com/thread-52448.html
You can do it by learn this http://community.mybb.com/thread-35598.html

Or, read portal.php file. It's explained anything that you may need.
Maybe this simple query could help (integrated with built-in MyBB templating). Displaying latest 10 threads. Play with "Order by" to sort by dateline, lastpost or thread ID itself.
Use it on your own custom portal.

	$query = $db->simple_select('threads', '*', "fid='17' ORDER BY tid DESC LIMIT 10");
    while($topikgosip = $db->fetch_array($query))
	{				
		eval("\$gosip .= \"".$templates->get("portal_latest_gosip")."\";");
	}
	if($threadlist)
	{ // show the table only if there are threads
		eval("\$kolom1 = \"".$templates->get "portal_latestthreads_kiri")."\";");		
	}