Mobile silent redirect - cloud

1
Hi there, When on cloud, the device being used is automatically redirected to the appropriate page based on whether the device is requesting mobile or not. Is there a way to disable this for certain devices OR all devices? We would like, for example, to take iPad users to the desktop site in order for them to be able to upload documents(currently a mobile restriction). Thanks
asked
1 answers
3

You can change your theme and adapt the index.html. In the head part add a script like

        <script>
        var uagent = navigator.userAgent.toLowerCase();
        if ((uagent.search("ipad") > -1) )
            window.location.replace("index-ipad.html");     
    </script>

Don't know the userAgent of IPad but you can easily find that.

answered