In AliExpress.com, the first twelve products in the search result page don't show any image. If you hover the pointer over any of those products, the secondary images (loaded by demand) show just fine. Also, if you scroll down, at some point the products start showing pictures by default (when they load on demand, too). It also affects other pages, such as the category pages, or the "Today's deals" section of the main page.
The console doesn't seem to show anything helpful. It just shows a "TypeError: t.slice is not a function" message two or three times, but the error also shows up on pages which load images correctly (i.e., product pages).
Steps to reproduce:
1) Open AliExpress.com.
--> In the main page, the "Today's deals" do not show product images.
2) Search something.
--> In the search results page, the first twelve results show no product images.
3) Scroll down.
--> After the thirteen result, product images start showing correctly.
This problem happens in all of my computers in different networks, and is reproducible both in a private window and with a clean profile.
If I can do anything (i.e., providing additional troubleshooting information or test a different useragent), please let me know.
AliExpress: product images do not load in search results Topic is solved
Moderator: trava90
Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.
Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.
Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
- Clear any current output
- Navigate or refresh the page in question
- Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
-
- Moongazer
- Posts: 11
- Joined: 2020-02-04, 06:04
-
- Lunatic
- Posts: 425
- Joined: 2019-03-16, 13:26
- Location: Qld, Aus.
Re: AliExpress: product images do not load in search results
It wants avif, which the browser doesn't support (and probably won't), so it switches to webp, but the already-loaded images aren't updated. Here's a Modify HTTP Response filter to load webp directly.
Code: Select all
[["www.aliexpress.com",["/^[^.]*$|\\.html/",["/jpg_\\.avif/g","jpg_.webp"]]]]
-
- Moongazer
- Posts: 11
- Joined: 2020-02-04, 06:04
Re: AliExpress: product images do not load in search results
Thank you very much! It works flawlessly. It even works in SeaMonkey, which was showing the same problem.
-
- Moon Magic practitioner
- Posts: 2892
- Joined: 2012-08-19, 20:32
Re: AliExpress: product images do not load in search results
I think something similar occurs here?
https://thepressproject.gr/starmer-o-po ... in-eirini/
Tried appending a new filter (with the correct format and URL changes - same as above otherwise) but it doesn't seem to apply in this case. Perhaps something is different.
-
- Lunatic
- Posts: 425
- Joined: 2019-03-16, 13:26
- Location: Qld, Aus.
Re: AliExpress: product images do not load in search results
AFAICT they only have avif; you'd have to actually convert them.
-
- Moon Magic practitioner
- Posts: 2892
- Joined: 2012-08-19, 20:32
Re: AliExpress: product images do not load in search results
Oh, great... Thanks for the info. 
