Dear Briesmi,
Please add the following code to wp-content\plugins\photo-gallery\frontend\views\BWGViewThumbnails.php file, after the line 152, right after <style>:
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
<?php if ($from) { ?>
@media screen and (max-width: 767px) {
#bwg_container1_<?php echo $bwg; ?> {
display: none;
}
}
<?php } ?>
wp-content\plugins\photo-gallery\frontend\views\BWGViewSlideshow.php file, line 201, please add the following code after <style>:
<?php if ($from) { ?>
@media screen and (max-width: 767px) {
#bwg_container1_<?php echo $bwg; ?> {
display: none;
}
}
<?php } ?>
wp-content\plugins\photo-gallery\frontend\views\BWGViewWidget.php, line 46, after <style>:
@media screen and (max-width: 767px) {
#bwg_container1_<?php echo $bwg; ?> {
display: none;
}
}
wp-content\plugins\photo-gallery\frontend\views\BWGViewAlbum_compact_preview.php, line 239, after <style>:
<?php if ($from === "widget") { ?>
@media screen and (max-width: 767px) {
#bwg_container1_<?php echo $bwg; ?> {
display: none;
}
}
<?php } ?>
Thank you.