Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Josh

    (@josh401)

    That’s a very good question. I haven’t been asked this before.

    Hmmm… I would guess the best way is to target the css via your stylesheet. You can say something like… “if you are mobile… do not load the qr div element”.

    I think it would look something like this:

    /* Hide Ultimate Tinymce QR Codes for mobile agents */
    @media screen and (max-device-width: 480px) {
        .jwl_qr_code { display: none; }
    }

    That basically says if the width of the device is maxed at 480px… it won’t display the widget. You can experiment with that value.

    Thread Starter davidebabylonia

    (@davidebabylonia)

    I have tried this code but there is no changes, do you need any other info? Isn’t it possible to exclude by generic user agent list?

    Plugin Author Josh

    (@josh401)

    Okay, I’ll have to ask my mobile guy how this can be done.

    Please follow up with me in 24 hours, if I have not posted back by then.

    Thanks.

    Thread Starter davidebabylonia

    (@davidebabylonia)

    Hello Josh,

    Any news?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘QR code’ is closed to new replies.