Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
3.9k views
in Plugins by

I am sure that most of the users do not use the activities page. I am one of them. I do not use the "my updates" page either, btw.

Why? you might ask, because the necessary information is not easy to find there.

I am still using the history plugin of NoahY, which is 2-3 years old now, in my public forums. Despite the fact that q2a 1.6.x has the "recent activities" built in.

Just compare!:

Recent activities (current q2a version, Snow theme):

 

History plugin (essential and necessary information only):

WHEN | WHAT | POST | POINTS (!)

 

My suggestion, change the activities page. Reduce the unnecessary information, then users will be able to use it finally.

You should start by removing the q-item-stats (view count, answer count), the tags, and the category.

I did some CSSing, this is the result:

 

CSS lines added:

.qa-template-user-activity .qa-q-item-what {
    font-size:17px;
    color:#333;
}
.qa-template-user-activity .qa-q-item-title {
    font-size:14px;
}
.qa-template-user-activity .qa-q-item-stats,
.qa-template-user-activity .qa-q-item-tags,
.qa-template-user-activity .qa-q-item-where {
    display:none;
}
.qa-template-user-activity .qa-q-item-title a {
    font-weight:normal;
}
.qa-template-user-activity .qa-q-list-item:nth-child(even) {
    background:#F0F0F0;
}
.qa-template-user-activity .qa-q-list-item {
    padding:10px 0;
}
.qa-template-user-activity .qa-q-item-main {
    width:100%;
}


MORE TO DO:

1. The time should appear in the beginning (!)
2. The points are still missing. They are so important! For this, the core should output them in the end of each line.
3. The activity "commented, answered, ..." should stand before the title of the question.

It is important WHEN+WHAT the user did, then follows WHERE.

---

 

After 2+ years with q2a I finally hope, this can be solved with the next version.

Regards,
Kai

Q2A version: 1.6.3

Please log in or register to answer this question.

...