How can I remove items from my wishlist in Steam?

You want to go to view your wishlist: (yours is here)


(not my wishlist)

While viewing your wishlist, you will notice the "Added on" line below the title. At the end of this line, there is a remove link. Use this remove link to remove an item from your wishlist.

alt text

Do note that you need to be logged in to be able to remove iitems from your wishlist.


You can do this from your Steam Community Profile page. Go to the Games section, then click on the Wishlist tab. From there you should see a remove link for each game.


In the source by press F12 In Chrome, look for this var g_rgWishlistData = in there you can find the appid.

Go your wishlist page, press F12, go to Console, and insert this:

$J.post( g_strWishlistBaseURL + 'remove/', {
                'appid' : 0,
                'sessionid' : g_sessionID
});

Replace the appid with the id from the list, and press enter.


For example, The Elder Scrolls V: Skyrim(Old one, hidden by Steam)'s appid is 72850. (as i said, In the source by press F12 In Chrome, look for this var g_rgWishlistData = in there you can find the appid.)
Go to your wishlist page, F12, Sources, and type the following text and Enter.

$J.post( g_strWishlistBaseURL + 'remove/', {
                'appid' : 72850,
                'sessionid' : g_sessionID
});

and it will removed from your wishing list.

Tags:

Steam