sonnb - XenGallery (XenForo Gallery) [Deleted]

I believe there is an addon that conflict javascript with XenGallery or xenforo.js was not loaded correctly.
 
We are still at XF 1.1. Could it be the reason?

Otherwise: It stopped some XenGallery versions ago (worked initially) and we haven't installed any new add-ons since then. Strange. Will it help if I provide you with a test account at our site?
 
We are still at XF 1.1. Could it be the reason?

Otherwise: It stopped some XenGallery versions ago (worked initially) and we haven't installed any new add-ons since then. Strange. Will it help if I provide you with a test account at our site?
XF 1.1 is not a problem. It works on both. Please give me a test account on your site :)
 
Have you ever thought of implementing a Contests feature in this? It would be simple, an authorized user would create a Contest Album, and all members would be able to upload there, and then after X days they would vote.

Has this been suggested before?
 
Have you ever thought of implementing a Contests feature in this? It would be simple, an authorized user would create a Contest Album, and all members would be able to upload there, and then after X days they would vote.

Has this been suggested before?
This has been suggested and already in to-do list :D
 
I can pay you extra if you develop this quickly. Or I can send you this:

image.jpg


Does that help motivate you more? :D
 
Quick question, is there any easy way to edit out the Gallery link from the navtab, unless a member finds their way there from an alternative link? Basically I've added the gallery menu to the subnav on the forum home and I want to remove the main tab, but I do want the main tab there and selected if they're actually viewing any gallery component. I tried editing the template sonnb_xengallery_navbar_template without any luck.
 
Quick question, is there any easy way to edit out the Gallery link from the navtab, unless a member finds their way there from an alternative link? Basically I've added the gallery menu to the subnav on the forum home and I want to remove the main tab, but I do want the main tab there and selected if they're actually viewing any gallery component. I tried editing the template sonnb_xengallery_navbar_template without any luck.
You can do it by edit PHP file:
library\sonnb\XenGallery\Listener.php
Find:
PHP:
$extraTabs['sonnb_xengallery'] = array(
                'title' => new XenForo_Phrase('sonnb_xengallery_gallery'),
                'href' => XenForo_Link::buildPublicLink('full:gallery'),
                'selectedTabId' => XenForo_Application::getOptions()->sonnbXG_disableNavPopup ? '' : $selectedTabId,
                'position' => 'middle',
                'linksTemplate' => 'sonnb_xengallery_navbar_template',
            );
and comment it out.
PHP:
/*
$extraTabs['sonnb_xengallery'] = array(
                'title' => new XenForo_Phrase('sonnb_xengallery_gallery'),
                'href' => XenForo_Link::buildPublicLink('full:gallery'),
                'selectedTabId' => XenForo_Application::getOptions()->sonnbXG_disableNavPopup ? '' : $selectedTabId,
                'position' => 'middle',
                'linksTemplate' => 'sonnb_xengallery_navbar_template',
            );
*/
 
Is there a way to make the "complete" username and title below the photo when sharing in a thread or post via BBCode?

Screen Shot 2013-10-01 at 8.44.44 PM.webp
 
You can do it by edit PHP file:
library\sonnb\XenGallery\Listener.php
Find:
PHP:
$extraTabs['sonnb_xengallery'] = array(
                'title' => new XenForo_Phrase('sonnb_xengallery_gallery'),
                'href' => XenForo_Link::buildPublicLink('full:gallery'),
                'selectedTabId' => XenForo_Application::getOptions()->sonnbXG_disableNavPopup ? '' : $selectedTabId,
                'position' => 'middle',
                'linksTemplate' => 'sonnb_xengallery_navbar_template',
            );
and comment it out.
PHP:
/*
$extraTabs['sonnb_xengallery'] = array(
                'title' => new XenForo_Phrase('sonnb_xengallery_gallery'),
                'href' => XenForo_Link::buildPublicLink('full:gallery'),
                'selectedTabId' => XenForo_Application::getOptions()->sonnbXG_disableNavPopup ? '' : $selectedTabId,
                'position' => 'middle',
                'linksTemplate' => 'sonnb_xengallery_navbar_template',
            );
*/

Thanks, this is helpful and puts me halfway their. It's removed from the navbar - however, I'm trying to make the tab exist in the navbar but only when viewing any of your gallery addon pages. (So the homepage would show no gallery tab, but the gallery pages would, and would show it selected).
 
Thanks, this is helpful and puts me halfway their. It's removed from the navbar - however, I'm trying to make the tab exist in the navbar but only when viewing any of your gallery addon pages. (So the homepage would show no gallery tab, but the gallery pages would, and would show it selected).

It is easy, change to:
PHP:
if ($selectedTabId === 'sonnb_xengallery')
            {
                $extraTabs['sonnb_xengallery'] = array(
                    'title' => new XenForo_Phrase('sonnb_xengallery_gallery'),
                    'href' => XenForo_Link::buildPublicLink('full:gallery'),
                    'selectedTabId' => XenForo_Application::getOptions()->sonnbXG_disableNavPopup ? '' : $selectedTabId,
                    'position' => 'middle',
                    'linksTemplate' => 'sonnb_xengallery_navbar_template',
                );
            }

I'm not a programmer, so I don't know where the error here. I will write to the author of the add-on also.
Widgets must hide and back.View attachment 57953 View attachment 57954
I believe it is something to do with ToggleMe addon. But I will check it.
 
Back
Top Bottom