Forum Settings
Forums

Any way to remove pinned anime in the season page?

New
Aug 25, 2022 10:11 AM
#1

Offline
Oct 2013
1788


Not really sure why that suddenly got to the top of the page despite its low score/popularity (and others are ranked by popularity).

Uhhh can I unpin this promotion?
Aug 25, 2022 12:49 PM
#2

Offline
Dec 2019
3528
You have to wait MAL stop doing the about me profile thing or use JS to hide that
Click here to see My Tampermonkey Scripts For MAL

If you like my work, please consider supporting it!
Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io
Aug 25, 2022 12:51 PM
#3

Offline
Apr 2020
402
I don't know if you can unpin it since they're trying to showcase that animes about me design
Aug 27, 2022 5:08 AM
#4
Offline
Oct 2019
13
I've been wondering how to unpin it as well do the scripts work? Why are they showcasing it
Aug 27, 2022 10:50 PM
#5

Offline
May 2010
1246
Not_Gamerfreak said:
I've been wondering how to unpin it as well do the scripts work? Why are they showcasing it

No script has been made to remove pinned anime yet, though it only takes minutes to make one so you should get good at JS, the other two posts already explained they are showcasing it for the about me design [Update Aug 23] About Me Summer Themes Are Here ☀️ (+New Anime Themes!)
and since it's new that's why older scripts that do similar things also do not yet have the ability to remove it, personally, I don't think it's a big enough annoyance to release a script for it.. so I'm just going to post it here.

https://openuserjs.org/scripts/shaggyze/Move_Pinned_in_Seasonal_Anime_-_MAL
ShaggyZEAug 28, 2022 2:37 AM
Aug 28, 2022 2:23 AM
#6

Offline
Oct 2013
1788
ShaggyZE said:
Not_Gamerfreak said:
I've been wondering how to unpin it as well do the scripts work? Why are they showcasing it

No script has been made to remove pinned anime yet, though it only takes minutes to make one so you should get good at JS, the other two posts already explained they are showcasing it for the about me design [Update Aug 23] About Me Summer Themes Are Here ☀️ (+New Anime Themes!)
and since it's new that's why older scripts that do similar things also do not yet have the ability to remove it, personally, I don't think it's a big enough annoyance to release a script for it.. so I'm just going to post it here.
// ==UserScript==
// @name         Move Pinned in Seasonal Anime - MAL
// @namespace    https://openuserjs.org/users/shaggyze/scripts
// @copyright    2022, shaggyze (https://openuserjs.org/users/shaggyze)
// @version      0.1
// @description  Move Pinned in Seasonal Anime
// @author       ShaggyZE
// @match        https://myanimelist.net/anime/season*
// @icon         https://dl.dropboxusercontent.com/s/yics96pcxixujd1/MAL.png
// @run-at       document-end
// @grant        none
// @license      MIT; https://opensource.org/licenses/MIT
// ==/UserScript==

(function() {
    'use strict';

        [...document.querySelectorAll("div.seasonal-anime")].filter(a => a.innerHTML.match("pin-icon")).forEach(async function(el) { el.parentNode.insertAdjacentHTML('beforeEnd', el.outerHTML); el.remove(); }); // Move seasonal divs matching "pin-icon" to end.
})();
Move Pinned in Seasonal Anime - MAL.user.js


Bless, I'll try it when I get home.

Do we know what would happen when they unpin it by themselves? Would it fuck someone up?

And I wonder if it affects only this anime/season or others as well?
Aug 28, 2022 2:28 AM
#7

Offline
May 2010
1246
dadnaya said:

Bless, I'll try it when I get home.

Do we know what would happen when they unpin it by themselves? Would it fuck someone up?

And I wonder if it affects only this anime/season or others as well?

no, it will just ignore it like every other anime, and yes it works on all seasons, I may have to upload it to openuserjs.org if I plan to make changes like if they start to pin it in other locations and manga as well.

https://openuserjs.org/scripts/shaggyze/Move_Pinned_in_Seasonal_Anime_-_MAL
ShaggyZEAug 28, 2022 3:21 AM
Aug 28, 2022 12:31 PM
#8
Offline
Oct 2019
13
How
ShaggyZE said:
Not_Gamerfreak said:
I've been wondering how to unpin it as well do the scripts work? Why are they showcasing it

No script has been made to remove pinned anime yet, though it only takes minutes to make one so you should get good at JS, the other two posts already explained they are showcasing it for the about me design [Update Aug 23] About Me Summer Themes Are Here ☀️ (+New Anime Themes!)
and since it's new that's why older scripts that do similar things also do not yet have the ability to remove it, personally, I don't think it's a big enough annoyance to release a script for it.. so I'm just going to post it here.

https://openuserjs.org/scripts/shaggyze/Move_Pinned_in_Seasonal_Anime_-_MAL
how is your profile pic a gif lmao
Aug 28, 2022 12:33 PM
#9
Offline
Oct 2019
13
dadnaya said:
ShaggyZE said:

No script has been made to remove pinned anime yet, though it only takes minutes to make one so you should get good at JS, the other two posts already explained they are showcasing it for the about me design [Update Aug 23] About Me Summer Themes Are Here ☀️ (+New Anime Themes!)
and since it's new that's why older scripts that do similar things also do not yet have the ability to remove it, personally, I don't think it's a big enough annoyance to release a script for it.. so I'm just going to post it here.
// ==UserScript==
// @name         Move Pinned in Seasonal Anime - MAL
// @namespace    https://openuserjs.org/users/shaggyze/scripts
// @copyright    2022, shaggyze (https://openuserjs.org/users/shaggyze)
// @version      0.1
// @description  Move Pinned in Seasonal Anime
// @author       ShaggyZE
// @match        https://myanimelist.net/anime/season*
// @icon         https://dl.dropboxusercontent.com/s/yics96pcxixujd1/MAL.png
// @run-at       document-end
// @grant        none
// @license      MIT; https://opensource.org/licenses/MIT
// ==/UserScript==

(function() {
    'use strict';

        [...document.querySelectorAll("div.seasonal-anime")].filter(a => a.innerHTML.match("pin-icon")).forEach(async function(el) { el.parentNode.insertAdjacentHTML('beforeEnd', el.outerHTML); el.remove(); }); // Move seasonal divs matching "pin-icon" to end.
})();
Move Pinned in Seasonal Anime - MAL.user.js


Bless, I'll try it when I get home.

Do we know what would happen when they unpin it by themselves? Would it fuck someone up?

And I wonder if it affects only this anime/season or others as well?
I thought you weren’t gonna release a script but you did Ig . How do you ignore other animes on mal I didn’t know this was a feature
Aug 28, 2022 12:49 PM

Offline
May 2010
1246
Not_Gamerfreak said:
how is your profile pic a gif lmao

my profile pic is not a gif, but my forum avatar is https://myanimelist.net/editprofile.php?go=forumoptions

Not_Gamerfreak said:
I thought you weren’t gonna release a script but you did Ig . How do you ignore other animes on mal I didn’t know this was a feature

your confusing what dadnaya is asking about, the script will not move a pinned anime that it was previously moving if they unpin it, it will ignore it like it's currently ignoring every other anime in seasonal.

also, double posting is against forum guidelines, that's what edit is for.
Aug 29, 2022 3:10 PM

Offline
Oct 2013
1788
ShaggyZE said:
dadnaya said:

Bless, I'll try it when I get home.

Do we know what would happen when they unpin it by themselves? Would it fuck someone up?

And I wonder if it affects only this anime/season or others as well?

no, it will just ignore it like every other anime, and yes it works on all seasons, I may have to upload it to openuserjs.org if I plan to make changes like if they start to pin it in other locations and manga as well.

https://openuserjs.org/scripts/shaggyze/Move_Pinned_in_Seasonal_Anime_-_MAL


Ohhhh I've tested it now, it works, thanks!

I thought it'd move it back to its original place, but it seems like it throws it down all the way here

Well, that's fine, idc about that anime so as long as it's out of my top page.!~
Sep 5, 2022 9:55 AM
Offline
Aug 2019
2
I made an improved script that moves the pinned titles back to their original place. It currently works for all sorting filters except sorting by licensor.

https://greasyfork.org/en/scripts/450798-unpin-seasonal-anime-mal
Sep 11, 2022 11:11 AM
Offline
Aug 2015
3
Just please remove this feature! Nobody wants to get fed stuff they don't live and MAL is doing too much of this recently.

First th discussion dialog and now that ...

More topics from this board

» Do MyAnimeList uses awstrack.me in email links?

CheeseBreeze - Yesterday

1 by -DxP- »»
4 hours ago

» App Not Working

Reecey91 - Yesterday

8 by Reecey91 »»
6 hours ago

» unable to reach "about me design"

Darkzepheran - Yesterday

2 by Darkzepheran »»
Yesterday, 3:15 PM

» How can I see the date I added an entry to my list? (if I didn't mark an episode as watched)

EterTC - Feb 14, 2023

18 by ShaggyZE »»
Oct 6, 11:34 PM

» MAL Signature site is not working?

UKhira - Oct 5

5 by Alexioos95 »»
Oct 6, 7:33 AM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login