MyBB Community Forums

Full Version: ezGallery 2.0.1 - Photogallery for MyBB
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I understand that. What i'm asking is if there is any work around, code edit or additional plugin that will auto resize them.

Thanks for the replies.
Will this plugin have a resize option anytime soon?
hi. i did not find the button ezgallery .. where it is located. ?
(2013-04-11, 12:18 AM)ikhwanulfikri Wrote: [ -> ]hi. i did not find the button ezgallery .. where it is located. ?

The main button is added to main theme in MyBB header
(2013-04-11, 12:19 AM)vbgamer45 Wrote: [ -> ]
(2013-04-11, 12:18 AM)ikhwanulfikri Wrote: [ -> ]hi. i did not find the button ezgallery .. where it is located. ?

The main button is added to main theme in MyBB header

is there any plans for the pro version release?
Still unhold right now due to many other projects that I am working.
How add 5 last pictures in home page forum?
Would require you to write an sql query and to pull the five pictures.
anybody help me ?Please
Here is the example query you would just need to add the formatting etc
		$dbresult = $db->query("
		SELECT p.ID_PICTURE, p.commenttotal, p.filesize, p.views, p.thumbfilename, p.filename, p.height, p.width, 
		 p.title, p.ID_MEMBER, m.username, p.date, p.description 
		 FROM ".TABLE_PREFIX."gallery_pic as p
		LEFT JOIN ".TABLE_PREFIX."users AS m on ( p.ID_MEMBER = m.uid) 
		WHERE p.ID_CAT = $cat AND p.approved = 1 ORDER BY p.ID_PICTURE DESC LIMIT 5");

		while($row = $db->fetch_array($dbresult))
		{
		}