This guide lets you remove any featured badge from your profile.
How to Remove Featured Badge After Patch
Once you set a featured badge, Steam won’t let you remove it.
However, using a simple inspect elements code we can remove it for a cleaner profile.
Navigate to your featured badge settings in a browser, right click anywhere, go to inspect elements, then click the network tab. Next select any badge and save after that in the network tab search for “v1?access_token” click on it and copy the request URL then paste it where in the code it says “PASTE HERE” then copy the code and paste it into the console tab after that simply close the console and click save on the settings page, then go back to your profile.
Code
var access_token = ""; var badgeid = 0; if (window.location.href.indexOf("steampowered") > -1) { access_token = $J("[data-loyaltystore]").data("loyaltystore").webapi_token; } else if(window.location.href.indexOf("steamcommunity") > -1) { access_token = JSON.parse($J("#profile_edit_config").attr("data-profile-edit")).webapi_token; SetFavoriteFeaturedBadge(access_token, badgeid); } else { console.log("go to: https://store.steampowered.com/points/shop or https://steamcommunity.com/my/edit/info"); SetFavoriteFeaturedBadge(access_token, badgeid); } function SetFavoriteFeaturedBadge(access_token, badgeid) { $J.post( 'PASTE HERE', { access_token: access_token, badgeid: badgeid }); }
Thanks to tfl for his excellent guide, all credits belong to his effort. if this guide helps you, please support and rate it via Steam Community. enjoy the game.