Subpage under development, new version coming soon!
Asunto: Manager Notes
- 1
I know the answer but I'll ask anyway
1. I have notes on players that have been deleted, and now I'm unable to delete the notes. Can this be fixed or does a fix already exist?
2. Is it possible to have NT Notes? Essentially I'd like to be able to leave notes on NT players that their manager can see (and make public or keep private if they want). I'd like to be able to assign badges or notes etc. In theory I could do this by messaging but it'd be too easy to fake.
3. And I'm not creating a new topic for this. Sort the NT invites please? It's ridiculous that I have to use the old design for such a basic function.
1. I have notes on players that have been deleted, and now I'm unable to delete the notes. Can this be fixed or does a fix already exist?
2. Is it possible to have NT Notes? Essentially I'd like to be able to leave notes on NT players that their manager can see (and make public or keep private if they want). I'd like to be able to assign badges or notes etc. In theory I could do this by messaging but it'd be too easy to fake.
3. And I'm not creating a new topic for this. Sort the NT invites please? It's ridiculous that I have to use the old design for such a basic function.
1. You can do it yourself if you have a little patience and are not completely tech-dumb.
2. It would be some kind of new feature and I am not sure if we need it. It kind of looks like it would have been a feature specially created for you.
3. As I said multiple times - devs know about it or at least they should have known as I described the problem in details and mentioned it to them many times. Apparently, it's just not important enough.
2. It would be some kind of new feature and I am not sure if we need it. It kind of looks like it would have been a feature specially created for you.
3. As I said multiple times - devs know about it or at least they should have known as I described the problem in details and mentioned it to them many times. Apparently, it's just not important enough.
1. Certainly not tech dumb, I tried manually changing the URL but that didn't work. I'm hoping this isn't a "Use the old design" fix but by all means help me out if you know the answer.
2. Just because something isn't needed doesn't mean it wouldn't be a nice feature, and I'm sure others would use it.
3. * Sigh *
2. Just because something isn't needed doesn't mean it wouldn't be a nice feature, and I'm sure others would use it.
3. * Sigh *
Regarding 1 - I can write you a guide here. I wrote it once somewhere on international forum, but I don't know where.
Here you can find info about it but in Polish: https://sokker.org/forum_topic/ID_forum/3/ID_topic/3601880/pg/1
2. I know, I am not saying it's bad or unnecessary feature, but it also surely isn't super cool feature either (at least, I don't feel it being such) and you are the only one mentioning it and it would need modification of old page and instead of thatit would be better to do it on theoretical new player page which should be made someday.
Here you can find info about it but in Polish: https://sokker.org/forum_topic/ID_forum/3/ID_topic/3601880/pg/1
2. I know, I am not saying it's bad or unnecessary feature, but it also surely isn't super cool feature either (at least, I don't feel it being such) and you are the only one mentioning it and it would need modification of old page and instead of thatit would be better to do it on theoretical new player page which should be made someday.
2. Try proposing it here if you hasn't already: https://sokker.org/forum_topic/ID_forum/63355/ID_topic/3597361/pg/1
And pray Raul will read and accept it.
And pray Raul will read and accept it.
Thanks, I'll test that out later
Nope didn't work. Syntax error with the ?
(editado)
Nope didn't work. Syntax error with the ?
(editado)
It does work, you probably translated it first and that could have change syntax.
Yep, translate botched the code. Sorted now, thankyou
(editado)
(editado)
I know You have already done it, but I am pasting it here anyway, so I could possibly refer someone to look here
If you want to delete a single private note and doesn't mind following instructions you will possibly not understand (due to being too "technical"), you can do this:
1. if You want use smartphone for this you can stop reading now and start your PC
2. go to page with notes https://sokker.org/briefcase/action/notes (for deleting single note, any old page is ok, but at the end I will show how to delete all private notes and that will require that exact page)
3a. if you use Firefox press Ctrl+Shift+K
3b. if you use Chrome/Opera/Vivaldi press Ctrl+Shift+J
3c. if you use other browser than any of the mentioned you have to figure this step out by yourself (you need to open something which could be called "dev console")
4. there should be another window (possibly docked to browser window, but not necessarilly) opened and it should be switched to Console tab, then paste this there:
$.post('https://sokker.org/briefcase/action/saveprivnote', {'note[21827434]': ''})
replacing player ID and press Enter
and if you would like to delete public note then paste this instead:
$.post('https://sokker.org/briefcase/action/savepubnote', {'note[21827434]': ''})
and finally, if you want to delete ALL your private notes at once you can paste this:
$('div.row > div > ul:first a[href^="briefcase/action/newnote/playerID/"]', document).each((idx, item) => $.post('https://sokker.org/briefcase/action/saveprivnote', {[`note[${$(item).attr('href').split('/').pop()}]`]: ''}));
If you want to delete a single private note and doesn't mind following instructions you will possibly not understand (due to being too "technical"), you can do this:
1. if You want use smartphone for this you can stop reading now and start your PC
2. go to page with notes https://sokker.org/briefcase/action/notes (for deleting single note, any old page is ok, but at the end I will show how to delete all private notes and that will require that exact page)
3a. if you use Firefox press Ctrl+Shift+K
3b. if you use Chrome/Opera/Vivaldi press Ctrl+Shift+J
3c. if you use other browser than any of the mentioned you have to figure this step out by yourself (you need to open something which could be called "dev console")
4. there should be another window (possibly docked to browser window, but not necessarilly) opened and it should be switched to Console tab, then paste this there:
$.post('https://sokker.org/briefcase/action/saveprivnote', {'note[21827434]': ''})
replacing player ID and press Enter
and if you would like to delete public note then paste this instead:
$.post('https://sokker.org/briefcase/action/savepubnote', {'note[21827434]': ''})
and finally, if you want to delete ALL your private notes at once you can paste this:
$('div.row > div > ul:first a[href^="briefcase/action/newnote/playerID/"]', document).each((idx, item) => $.post('https://sokker.org/briefcase/action/saveprivnote', {[`note[${$(item).attr('href').split('/').pop()}]`]: ''}));
- 1