Thank you so much for the quick reply. I am defining an array of images based on mobile detection in the front-page file in my theme:
if(wp_is_mobile()){
$images = array(
‘mobile image url 1’,
‘mobile image url 2’,
‘mobile image url 3’,
);
}else {
$images = array(
‘desktop image url 1’,
‘desktop image url 2’,
‘desktop image url 3’,
);
};
I’d rather not share specific site details on this public forum, but let me know if that is not enough to go on. Thank you!