How to Quickly Delete All Sent Messages on Plenty Of Fish
Every time you send someone a message on Plenty Of Fish it gets saved in the Sent Messages section.
While POF does not make it too difficult to delete sent messages ...
- Check the Sent to button at the top of the list of sent messages. This will check the checkbox next to each sent message.
- Scroll down to the bottom of the page and click the Delete Selected button.
If you have a lot of sent messages, this gets pretty tedious pretty fast. Plenty Of Fish only loads or shows 10 sent messages per page. I am sure they could easily arrange it so all your sent messages are on one single page if they wanted to.
Delete Sent Messages Page Pof.
Delete Sent Messages Page Pof.
A Faster More Automated Way to Delete All Sent Messages on POF.com
We have put together a simple Javascript code block you can drag and drop to your browsers toolbar and use as a bookmark.
Clicking the delete sent messages bookmark ...
- Checks all the checkboxes next to each sent message.
- Presses the Delete Selected button for you.
- Navigates to the next page of sent messages.
Drag and drop this Delete Sent Messages
link to your web browsers toolbar.
Javascript Code for the Delete Sent Messages on POF
Here is the Javascript code used to delete all sent messages on Plenty Of Fish. As you mouse over each line of code, an explanation of what that code does appears at the top of the code window.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
var items = document.getElementsByTagName('input');
for (var i = 0; i < items.length; i++)
{
if (items[i].type == 'checkbox')
{
items[i].checked = true;
}
}
var btn = document.getElementById("submit2");
btn.click();
You Do Not Have to Delete Sent Messages
If you don't delete your sent messages there is no negative impact on your dating account, but if you tend to be OCD like me, you want to keep things clean. This simple bookmark makes it faster and easier to delete all your sent messages on Plenty Of Fish.