To disable Pretty Photo in iPad/Phone you need to make it's initialization conditional. The initialization looks like it happens in schuremediagroup.com/js/script.js, here (around line #30):
Code:
// prettyPhoto
$("a[data-type^='prettyPhoto']").prettyPhoto({theme:'light_square'});
So you could:
Code:
// prettyPhoto
if(!/ipad|iphone/i.test(navigator.userAgent)){
$("a[data-type^='prettyPhoto']").prettyPhoto({theme:'light_square'});
} else {
$("a[data-type^='prettyPhoto']").attr('target', '_blank');
}
The highlighted part is optional, it will make the larger images open in a new tab in those devices.
This all assumes that's the init and that there's no other init someplace else.
Bookmarks