I uploaded my image for mobile version on the product page.
However, It doesn’t show on mobile version.
Plus, if the mobile version doesn’t display the image, it should at least appear the image of desktop version as if it were the mobile version. However, when viewed in the mobile version, the photo in that section is completely missing.
The lap–hide class is setting a “display: none” on the container of the image which makes it dissapear on mobile devices. The best way to solve this (but not the easiest) is to delete this class from the div → in theme files find where this element is located and delete this class. The easy way (but not ideal) is to add this code in base.css (in theme files) or in “custom css” inside theme configuration under theme settings:
.lap--hide:has(figure){
display: block;
}
This code basically sets every element that has a figure and that was hidden to be visible. A tradeoff is that it does not work on firefox!!! What you can also do is add a class to your div (but again you would have to find where it is in theme files) like “visible” and in custom css (same way that I described earlier) define this class like so: