AliExpress: product images do not load in search results Topic is solved

For support with specific websites

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:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
User avatar
ajgelado
Moongazer
Moongazer
Posts: 11
Joined: 2020-02-04, 06:04

AliExpress: product images do not load in search results

Unread post by ajgelado » 2025-05-07, 02:03

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.

User avatar
adoxa
Lunatic
Lunatic
Posts: 425
Joined: 2019-03-16, 13:26
Location: Qld, Aus.

Re: AliExpress: product images do not load in search results

Unread post by adoxa » 2025-05-07, 07:34

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"]]]]

User avatar
ajgelado
Moongazer
Moongazer
Posts: 11
Joined: 2020-02-04, 06:04

Re: AliExpress: product images do not load in search results

Unread post by ajgelado » 2025-05-08, 00:30

Thank you very much! It works flawlessly. It even works in SeaMonkey, which was showing the same problem.

User avatar
back2themoon
Moon Magic practitioner
Moon Magic practitioner
Posts: 2892
Joined: 2012-08-19, 20:32

Re: AliExpress: product images do not load in search results

Unread post by back2themoon » 2025-05-16, 12:29

adoxa wrote:
2025-05-07, 07:34
It wants avif, which the browser doesn't support (and probably won't)
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.

User avatar
adoxa
Lunatic
Lunatic
Posts: 425
Joined: 2019-03-16, 13:26
Location: Qld, Aus.

Re: AliExpress: product images do not load in search results

Unread post by adoxa » 2025-05-16, 14:36

AFAICT they only have avif; you'd have to actually convert them.

User avatar
back2themoon
Moon Magic practitioner
Moon Magic practitioner
Posts: 2892
Joined: 2012-08-19, 20:32

Re: AliExpress: product images do not load in search results

Unread post by back2themoon » 2025-05-16, 14:38

Oh, great... Thanks for the info. :-)