My customers are having an issue with the trusted shop logo image we have when browsing on an ios device.
I am sure that the best way to resolve the would be to put a check for the device type i an if block and prevent the integration from rendering should it be an ios device they are browsing on.
from my research on the web i have found this line of code which i believe would help but how i would implement this however evades me.
Any help would be much appreciated.
I am sure that the best way to resolve the would be to put a check for the device type i an if block and prevent the integration from rendering should it be an ios device they are browsing on.
from my research on the web i have found this line of code which i believe would help but how i would implement this however evades me.
Code:
var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false );
Comment