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.
-
ajgelado
- Hobby Astronomer

- Posts: 21
- Joined: 2020-02-04, 06:04
AliExpress: product images do not load in search results
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.
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.
-
adoxa
- Astronaut

- Posts: 627
- 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"]]]]
-
ajgelado
- Hobby Astronomer

- Posts: 21
- 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.
-
back2themoon
- Knows the dark side

- Posts: 3214
- 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.
Improve Pale Moon performance • Safe Mode / clean profile test info
How to auto-fill passwords • How to apply user agent overrides
Information to include when asking for support
Using: SSE2 build (thanks Nuck-TH) • W10 Pro x64
How to auto-fill passwords • How to apply user agent overrides
Information to include when asking for support
Using: SSE2 build (thanks Nuck-TH) • W10 Pro x64
-
adoxa
- Astronaut

- Posts: 627
- 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.
-
back2themoon
- Knows the dark side

- Posts: 3214
- Joined: 2012-08-19, 20:32
Re: AliExpress: product images do not load in search results
Oh, great... Thanks for the info. 
Improve Pale Moon performance • Safe Mode / clean profile test info
How to auto-fill passwords • How to apply user agent overrides
Information to include when asking for support
Using: SSE2 build (thanks Nuck-TH) • W10 Pro x64
How to auto-fill passwords • How to apply user agent overrides
Information to include when asking for support
Using: SSE2 build (thanks Nuck-TH) • W10 Pro x64
-
damjang
- Fanatic

- Posts: 115
- Joined: 2012-01-14, 11:22
Re: AliExpress: product images do not load in search results
Thank you! Work ok after I change the www.aliexpress.com to it.aliexpress.com.adoxa wrote: ↑2025-05-07, 07:34It 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"]]]]