Close

Bugs

jslater
4 years ago
#21067 Quote
Avatar
  • 8
Thank you for your reply,

I downloaded a fresh 4.0 Emporium and extracted just the Anywhere Slider plugin.

I saw your warning about if hosted on Azure there not to follow that documentation.

I then instead made a back up of the Anywhere Slider I am using on my website and then overwrote the plugin folder with my new fresh downloaded plugin.

I restarted the application but it did not seem to make a difference, is there something I am doing wrong?

Thanks
IntactCliqxTeam
one year ago
#22055 Quote
Avatar
  • 3
When the Preload First Image option is selected in Settings, the first slider is rendered as a <picture> tag with  media query for mobile sized browsers. The other sliders are rendered as <img> tags. However, the <picture> tag doesnt seem to work, and just displays the default <img> tag. This means my mobile size image in the slider never gets shown
BaloghDavid
5 months ago
#22296 Quote
Avatar
  • 2
version: 4.5.233.35027

If we use more slides in a slider, there is an extra empty line under the slides before they change to the 5th slide, then it disappeares (and everything jumps up under the slider).
If we check the source code in the browser, the first 4 slides has direct link in the img src part, but from the 5th slide it has data:image/png there.
It seems to me that lazy loading messes up the automatic sizing.
Do you have any solution for this problem (except using fewer than 5 slides)?
hristo
3 months ago
#22315 Quote
Avatar
  • Moderator
  • 172
@BaloghDavid

It has been fixed in version 4.6, and it is not "number of slides" related.
You need to add this code into your AS css file:

.anywhere-slider img[data-lazy] {
    max-height: 1px;
}
Regards,
Hristo Gospodinov
Nop-Templates.com
hristo
3 months ago
#22316 Quote
Avatar
  • Moderator
  • 172
@bluerocksystems

It seems like there is some sort of problem at your end. Do you follow the requirement to not have blank spaces in file names for slider images? Such images are known to break the "Mobile Picture" functionality. If you have some, remove them from the AS administration and reupload them with correct file names (use a dash or underscore instead of blank spaces).
Regards,
Hristo Gospodinov
Nop-Templates.com
allwin
3 months ago
#22319 Quote
Avatar
  • 1
hristo wrote:
@BaloghDavid

It has been fixed in version 4.6, and it is not "number of slides" related.
You need to add this code into your AS css file:

.anywhere-slider img[data-lazy] {
    max-height: 1px;
}




Thank you!