Filter posts by member’s join date / account age?

SpaceshipSpaceship
SpaceshipSpaceship
SpaceshipSpaceship
Watch

wallet2it

@Learning.cc @1st.xyz @AgenticAICompany.comTop Member
Impact
1,995
Is there a way on NamePros to filter posts or threads based on how long the member has been on the forum (for example, only seeing posts from members who joined more than a year ago)?
 
2
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
AfternicAfternic
only seeing posts from members who joined more than a year ago
It's a great idea. At one time, we had planned to add a bunch of filters like this to threads, but we never had much demand for it except internally.

Thanks for letting us know that you'd also like such a feature! :)
 
3
•••
Upvote 0
Be creative.

The following Tampermonkey script, when active, hides OP in this thread. :)

It's based on member ID on the forum.

Code:
// ==UserScript==
// @name         NamePros Post Filter (by max ID)
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Hides posts from members with an ID greater than or equal to a specified number.
// @author       Timothy
// @match        https://www.namepros.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Set the maximum member ID to display. All posts with this ID or higher will be hidden.
    const maxId = 1012797;

    // Select all post containers on the page
    const posts = document.querySelectorAll('article.message--post');

    // Loop through each post and find the author's ID
    posts.forEach(post => {
        const userIdElement = post.querySelector('a[data-user-id]');

        // Ensure the element with the user ID exists before proceeding
        if (userIdElement) {
            const authorId = parseInt(userIdElement.getAttribute('data-user-id'), 10);

            // If the author ID is greater than or equal to the maximum, hide the entire post
            if (authorId >= maxId) {
                post.style.display = 'none';
            }
        }
    });
})();

Screenshot 2025-09-14 at 05-46-10 (3) Filter posts by member’s join date _ account age NamePros.png




Screenshot 2025-09-14 at 05-46-31 (3) Filter posts by member’s join date _ account age NamePros.png
 
Last edited:
4
•••
Upvote 0
Dynadot — .com TransferDynadot — .com Transfer
Truehost — .com domains from $4.99, hosting includedTruehost — .com domains from $4.99, hosting included

We're social

Escrow.com
Spaceship
Domain Recover
CryptoExchange.com
Catchy
DomDB
NameFit
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back