News:

Join the Facebook Fan Page.

Main Menu

SMF Gallery

Started by SMFHacks.com Team, September 16, 2006, 07:13:02 PM

Previous topic - Next topic

vbgamer45

Are you using any editor mods? It looks different
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

random539

Thanks for the quick reply!  Not quite sure what you mean, but here's the mods I have installed:

SMF Versatile Post Reactions
unicode emoji for smf
Ohara YouTube Embed
@mention members
SMF Gallery Lite

I'm also using the Ant's Mutant Curve theme, maybe that has something to do with it?

vbgamer45

It could be switch to the default theme and see if it happens there.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

random539

Turns out that was the problem, it works fine with the default theme.  Can't believe I didn't think of that earlier.  Thanks for your help!

vbgamer45

Glad you were able to figure it out!
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Mike66

Is it possible to insert a 'slideshow' of a group of gallery images in a post?

vbgamer45

Not currently.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Mike66

Quote from: vbgamer45 on March 07, 2022, 12:20:51 PMNot currently.

Thanks for the confirmation, I was going round in circles.

Mick.

Quote from: random539 on February 16, 2022, 02:06:46 PMThanks for the great mod!  It's working perfectly for me except on the add picture page the description text box is extremely wide, so much so that the Add Picture button isn't even displayed until I scroll quite a bit to the right.  Any ideas on how I could fix this?

Thanks!

edit - Perhaps I should include that I'm using SMF 2.0.19 and SMF Gallery Lite 7.1
Well, it looks like the gallery mod and whatever other mod you're using are not jigging. I've never seen that post display before. I'm willing to bet, it's an unclosed div.

What if you uninstall both mods and re install them. If it persists, try again but backwards.

Mick.

Oops, I just replied to an old comment. Lol dang phone.

Paulsa

I am disappointed that I cannot resize the images for mobile. The gallery function and layout is great.

I'm now looking for a way to add a top menu button to SMF 2.1.1 that links to a photo gallery on the server which resides separately from the SMF files. For example: Home  Search  Admin  Moderate  Gallery.
Your mod creates the button perfectly. I believe the menu button would need to link to the gallery through the site url/gallery. I only know enough to edit the code but don't know what files to edit or how to create a button/link for the top menu. Any help you could give me would be greatly appreciated.

Thank you..
Steve

vbgamer45

You would need a menu editor mod or Edit the Sources/Subs.php and change the menu array. I think there is a guide somewhere on the forum but not sure if it is for 2.1
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

njtweb

Has there been any further development into making this mod responsive?

Sir Osis of Liver

I've been running an old install of Gallery Lite 3.7 since 2014, which I modified.  The major change was assigning a separate category to each of a half dozen members, the members can only add pics to their own gallery.  There are some other things, main menu Gallery button lights up for 24 hours after new image is added to any gallery, new comments send email notification to gallery owner, comment count lights up for 24 hours after new comment is posted.  Those are what I remember, may be others.  There are currently four tables in database, smf_gallery_cat, smf_gallery_comment, smf_gallery_pic, smf_gallery_report (empty).  Are they compatible with 7.1?  Looks like the mod added only one file, Gallery2.php, that's where all the code edits are.  If at some point I upgrade the forum to 2.1 and install current version 7.1, what can I expect will happen?  There are approx. 1100 images in the galleries, it's a major feature of my family forum and we would not want to lose it.
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

vbgamer45

Yes, you can upgrade from any previous version to the latest version without issue.
I would make a backup of the changes you made.
But, all pictures and data will still be there.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Sir Osis of Liver

OK, will import those tables to 2.1 test forum, install current gallery mod, see if I can replicate the customizations.
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Steve

How do I make the 'Gallery' button on the main index navigation bar open in a new page?
DO NOT pm me for support!

vbgamer45

Requires an Edit to Sources/GalleryHooks.php


In function gallery_menu_buttons
Find
    gallery_array_insert($menu_buttons, $button_insert,
     array(
                    'gallery' => array(
                    'title' => $txt['smfgallery_menu'],
                    'href' => $scripturl . '?action=gallery',
                    'icon' => 'gallery.png',
                                    'show' => allowedTo('smfgallery_view'),
                            'sub_buttons' => array(),
   
    )
    )
    ,$button_pos);

Change to

    gallery_array_insert($menu_buttons, $button_insert,
     array(
                    'gallery' => array(
                    'title' => $txt['smfgallery_menu'],
                    'href' => $scripturl . '?action=gallery',
                    'target' => '_blank',
                    'icon' => 'gallery.png',
                                    'show' => allowedTo('smfgallery_view'),
                            'sub_buttons' => array(),
   
    )
    )
    ,$button_pos);

Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Steve

Perfect! Thanks my friend.  :)
DO NOT pm me for support!

vbgamer45

Glad to help.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Advertisement: