Topic-icon Modal Pop Up not Popping up

Active Subscriptions:

None
10 years 10 months ago #33865 by martin.s
Hello there,

I actually was happy to find another option for a login module. Unfortunately it does not work like I expected but I am sure that can be sorted out ;)
the website is www.revivaltrainingcenter.de The Module is installed at the to only for the frontage. When I click on login (it only displays text, no buttons) nothing happens. The link it should open is www.revivaltrainingcenter.de/#login-modal - but like I said, nothing happens.

Any clues? I read through a post where it was about component output, but can not find anything that helps me here. But that maybe related to the fact that I do possibly not understand everything correctly, since my native language is German ...

Nevertheless, help would be appreciated greatly!

Best regards and thank you in advance

Martin
The topic has been locked.
Support Specialist
10 years 10 months ago #33869 by alzander
Martin,
In the "Advanced" section of the SCLogin module, please enable the "Load Bootstrap" setting. I think that's all that's wrong, but if that doesn't help, just let us know.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 10 months ago #33871 by martin.s
Hi Alex,

I had that enabled before, same issue. Have it enabled again now, so maybe you have another idea?

Regards

Martin
The topic has been locked.
Support Specialist
10 years 10 months ago #33876 by alzander
Martin,
With that setting, the following Javascript file should be loaded on the page:
modules/mod_sclogin/js/vendor/bootstrap.min.js

I'm not seeing that being included now though, which is strange. I am seeing some Javascript that looks like it's been compressed together and cached. Can you try disabling any Joomla caching or optimization plugins you have enabled and see if that fixes the problem? If so, we can help you re-enable them. We just need to narrow down what's causing the problem right now.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 10 months ago #33879 by martin.s
Dear Alex,

in the Joomla Configuration under system-settings Caching is turned off. I don't know of any other plugins for optimization or caching - I haven't installed any. And this is a quite clean installation.

I am not sure, but I am using Nextend Smart Slider and tried another Login Module before. These two plugins worked in a way, that actually the site didn't function any more. But for the look and feel of our site we need smart slider. I am not sure if there would be any issue with that.

Thank you for getting back, I hope the issue can be solved, I just don't like the Joomla standard login module.

Best regards

Martin
The topic has been locked.
Support Specialist
10 years 10 months ago #33885 by alzander
Martin,
Thanks for your patience. I think I see what may be wrong, but will need you to make a minor code change to our SCLogin module to test. The problem is template specific, so we can't fully test on our own. If it works though, you should be good to go.

To make the edit, please open the /modules/mod_sclogin/mod_sclogin.php file. Around line 90, you'll see:
if($params->get('loadBootstrap'))
{
    $document->addStyleSheet('modules/mod_sclogin/css/sc_bootstrap.css');
}
Please update that to:
if($params->get('loadBootstrap'))
{
    JHtml::_('bootstrap.framework');
    $document->addStyleSheet('modules/mod_sclogin/css/sc_bootstrap.css');
}
Please let us know how that goes or if you run into any other issues. If that works for you, we'll make sure that fix is included in the next release as well.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 10 months ago #33886 by martin.s
Thank you Alex, issue closed! Although I don't understand what happened, now it works ;)

Best regards and blessings

Martin
The topic has been locked.
Support Specialist
10 years 10 months ago #33887 by alzander
Martin,
Thanks for reporting back so quickly. I'm glad to hear that got things going for you. For a quick explanation, our module was basically making an assumption that all Joomla 3.0 templates will include popup library we needed. That obviously isn't valid, and that simple line of code ensures that what we need is always loaded.

I hope that everything works smoothly for you now, but should you need anything else, just let me know.

Finally, if you haven't already, please consider leaving a rating and review for the SCLogin module on the Joomla Extension Directory. It's certainly not required, but very appreciated:
extensions.joomla.org/extensions/access-...authentication/24054

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 10 months ago #33888 by martin.s
I will do ... The module looks totally like what I needed and I tried others, that really gave me a hard time ...
The topic has been locked.
Support Specialist
10 years 10 months ago #33911 by alzander
Glad to hear we could provide what you're looking for. Should you need anything else, just let us know. We look forward to seeing your review and really appreciate it.

Thanks, and good luck,
Alex
The topic has been locked.