最後の訪問を削除する方法

Greetings of the day, experts!
Apologies for disturbing you all again, but I am a beginner, and I am still learning. Again, with a question, is there a way to remove the last visit?
I am not proficient in CSS. So, if needed, I will be grateful if you can share the code as well.
Thank You in advance and have a nice day!

「いいね!」 1

Hi Ankush!

On which page is the “Last visit” you’re talking about?

Can you provide a screenshot?

「いいね!」 2

Is it the image thingy that is refered to as the Last Visit that the OP is talking about? (That’s what I think the OP is refering to.)

「いいね!」 1

Users can disable presence in their profile settings. See https://meta.discourse.org/my/preferences/interface and Hide my public profile and presence features or disable it globally with presence enabled on site settings

「いいね!」 3

Please accept my apologies, Sir. I forgot to attach the screenshot. Here’s there last visit I was talking about:


I want to remove this line, since I think I don’t need it. Thank You for your time.

「いいね!」 1

Apologies, I wan’t asking about this. I have shared a screenshot above. Thank You for taking the time to reply.

「いいね!」 1

Thank You for the reply, Sir. It’s not what I was asking for, and I have shared the screenshot as well. Apologies for not sharing it before.

「いいね!」 1

Hi!

It’s not the last visit, it’s the date of the last activity on the topic, whether it’s a user post, an admin/moderator action, etc…

「いいね!」 2

Oh, my bad. Is there a way to remove it?

「いいね!」 1

Yes, this CSS will do the job:

th.activity, td.activity {
    display: none;
}

:sparkles:

「いいね!」 3

Thank Your for the quick reply. I have added the CSS code.

But seems like nothing has changed:

「いいね!」 1

Oh sorry, I misunderstood. I thought you were talking about the last column.
Here’s the working code:

.topic-list .topic-list-item-separator {
    border-bottom: 1px solid var(--primary-low);
    .topic-list-data {
        display: none;
    }
}

Before:

After:

「いいね!」 2

It worked, thank you so much! I am so grateful. Have a great day, Sir!

「いいね!」 2

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.