thank you Bartosz. i paste the code on my functions.php but nothing happens. it’s still load prettyphoto on mobile
function custom_rl_lightbox_args($args) {
if (wp_is_mobile() === true) {
$args['script'] = 'swipebox'; // swipebox, nivo, prettyphoto, fancybox
} else {
$args['prettyphoto'] = 'swipebox'; // swipebox, nivo, prettyphoto, fancybox
return $args;
}
add_filter('rl_lightbox_args', 'custom_rl_lightbox_args');
}