Add "browser Update" To Helix Ultimate - Question | JoomShaper

Add "browser Update" To Helix Ultimate

E

Etienne

Helix Framework 3 years ago

Hi everyone,

I'd like to add a notification/pop-up to users which use Internet Explorer because my app doesn't works with it.

I added the script from https://browser-update.org/fr/#install in the Custom Javascript area In Helix ultimate but it doesn't works very well...

Even with the plugin especially for Joomla, so...

And my website is on an intranet so, I haven't any communication with the exterior

Somebody could help me?

0
2 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #5260

Hi, Sorry we do not provide IE support

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 3 years ago #5264

Hi, It's question beyond support but ...

Option #1: Using IE CSS hacks you can create a short message inside custom module that would be displayed only for IE10 and IE11 users - add class name to that module. If you know CSS - handle & customize this:

    .iebrowser { display:none; }
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .iebrowser { display:block !important; }
}

Option #2: You need popup module (for example PopUp Aholic module) and installed Advanced Module Manager (RegularLabs.com) - it allows you to set where the modules should be displayed, also by browser.

0