Helloo
Would you like to react to this message? Create an account in a few clicks or log in to continue.

How to remove a featured badge on your STEAM profile

Go down

How to remove a featured badge on your STEAM profile Empty How to remove a featured badge on your STEAM profile

Post  forumtester Sat May 01, 2021 12:50 pm

In order to set the Favourite / Featured Badge back to none selected, copy and paste this link into a new browser tab: (make sure you're signed into STEAM in your browser)

https://steamcommunity.com/profiles/76561199066338340/edit/favoritebadge

Next open dev tools (F12 or ctrl+shift+i) and navigate to the console tab. Then paste the below code into the console:



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( 'https://api.steampowered.com/IPlayerService/SetFavoriteBadge/v1?', {
access_token: access_token,
badgeid: badgeid
});
}



After this, simply hit enter, follow this by closing the dev tool popup. Simply reload the page, and you will see that there is now no badge featured on your profile.

forumtester

Posts : 165
Join date : 2015-12-25

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum