Topic-icon Modal issue , Login button is not working!

Active Subscriptions:

None
2 years 6 months ago #67586 by 5ky
I can confirm that modal is not working with latest joomla, helix ultimate and pagebuilder...
Last Version was 8.4.7 which was working.

Is there a possibility to download this older version?
The topic has been locked.
Support Specialist
2 years 6 months ago #67589 by alzander
We think we've located the issue. There are some issues with the proper Bootstrap CSS not loading on some Joomla 3.x sites. We'll be working on some code changes tomorrow and expect to have an updated version available then.

Thanks for your patience and we apologize for the issues.

Alex
The topic has been locked.
Active Subscriptions:

None
2 years 6 months ago #67590 by kingdm
Thank you Alzander. I'll look forward to the update.
The topic has been locked.
Support Specialist
2 years 6 months ago #67592 by alzander
Below is a link to a *test* version of the new SCLogin package. We've been testing on a few development sites we have and the modal issues seem to be fixed. Additionally, we were able to implement similar changes on sites in this thread (using browser developer tools) and the problems seem resolved.

Please install and let us know if you continue to see any issues.
SCLogin v9.0.182 TEST Release

Additionally, if the above has issues or for some other reason you want to revert to SCLogin 8.4.7, here is a download link:
SCLogin v8.4.7 .

kingdm - I wanted to call out 2 notes when testing on your site:
1) The "Log in" text at the top does currently show the login button in a popup. The logo slightly overhangs the text, so you need to click in just the right spot for the modal popup to work, but it does work. The updated SCLogin module above will fix many graphical issues with the popup though.
2) The 'x' in the top of the modal with the updated version will have a horizontal line through it. That's a bug with Bootstrap when the close button is enabled but there's no title. I'd recommend showing the title in the module settings or disabling the close button.

Please let us know your results, good or bad!

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

None
2 years 6 months ago #67597 by kingdm
I've loaded the test module and it is working, so I only have CSS issues to fix on my end. If you could offer some info on one of the layout issues, it would be helpful. There is no lightbox type background when the modal box pops up in the new version (see attached image). If you can offer any information, it would be appreciated. Thank you very much for all of your help!
Attachments:
The topic has been locked.
Active Subscriptions:

None
2 years 6 months ago #67598 by kingdm
I found the background css in the common.css file. Is there a way to add the same css to the text module?

.sourcecoast.modal-backdrop {
z-index: 99990;
position:fixed;
top:0;
bottom:0;
right:0;
left:0;
background-color: #000000;
opacity: 0.8;
}
The topic has been locked.
Support Specialist
2 years 6 months ago - 2 years 6 months ago #67600 by alzander
Glad to hear the test module is an improvement. Please use this CSS to add the dark layer for the backdrop:
.modal-backdrop {
  z-index: 1000;
  position:fixed;
  top:0;
  bottom:0;
  right:0;
  left:0;
  background-color: #000000;
  opacity: 0.8;
}
The above is almost the same as what you pasted above, but removes '.sourcecoast' from the selector and changes the z-index to 1000. I just tested on your site and that works. We'll investigate why that change is needed on some sites as well for the next release.

Thanks!
Alex
Last edit: 2 years 6 months ago by alzander.
The topic has been locked.
Active Subscriptions:

None
2 years 6 months ago #67602 by kingdm
It worked great! Thanks again!
The topic has been locked.
Support Specialist
2 years 6 months ago #67608 by alzander
Fantastic! Thanks for the update to let us know. We'll keep investigating if there are other changes needed and make sure this is incorporated into the next release.

Thanks,
Alex
The topic has been locked.