- Compatible XF Versions
- 1.2
- 1.3
- 1.4
- 1.5
This add-on shows a user's post and thread count of each forum in which the user has posted at least one message. The post areas table is shown in a new user profile tab.
Features
Installation
The „usual procedure“. For your convenience, you may use the Add-on Install & Upgrade add-on.
Custom table styles
You can adjust the table style to that on the images by adding the CSS rules below the images to your EXTRA.css template. The styles can also be combined with each other as you like. Have a look at this post for an example of such a composed style.
Please note:
The screenshots below are from pre 1.3 releases where there was no „Threads“ column. Also some of them are taken from the 1.1 release where the post counts weren't links and the content of the post counts column was centered by default.
Without column heardings
#PostAreas thead
{
display: none;
}
Background color of hovered rows
#PostAreas tbody tr:hover
{
background: rgba(0, 0, 0, 0.1)
}
Background color of even rows
#PostAreas tr:nth-child(even)
{
background: rgb(232, 232, 232)
}
Background color of captions and odd rows
#PostAreas .header
{
background-color: rgb(252,252,255);
}
#PostAreas tr:nth-child(odd)
{
background-color: rgb(239,239,239);
}
Centered and 50% width table
#PostAreas table
{
width: 50%;
margin: 0 auto;
}
Right-aligned forum titles
#PostAreas .forum_title_column
{
text-align: right;
}
Centered post counts
#PostAreas td.post_counts_column
{
text-align: center;
}
Features
- post counts are sorted in descending order
- forum names are links to the corresponding forums
- post / thread counts are links to a search for all posts / threads from the user in the corresponding forum
- only publicly visible posts / threads are counted
Installation
The „usual procedure“. For your convenience, you may use the Add-on Install & Upgrade add-on.
Custom table styles
You can adjust the table style to that on the images by adding the CSS rules below the images to your EXTRA.css template. The styles can also be combined with each other as you like. Have a look at this post for an example of such a composed style.
Please note:
The screenshots below are from pre 1.3 releases where there was no „Threads“ column. Also some of them are taken from the 1.1 release where the post counts weren't links and the content of the post counts column was centered by default.
Without column heardings
#PostAreas thead
{
display: none;
}
Background color of hovered rows
#PostAreas tbody tr:hover
{
background: rgba(0, 0, 0, 0.1)
}
Background color of even rows
#PostAreas tr:nth-child(even)
{
background: rgb(232, 232, 232)
}
Background color of captions and odd rows
#PostAreas .header
{
background-color: rgb(252,252,255);
}
#PostAreas tr:nth-child(odd)
{
background-color: rgb(239,239,239);
}
Centered and 50% width table
#PostAreas table
{
width: 50%;
margin: 0 auto;
}
Right-aligned forum titles
#PostAreas .forum_title_column
{
text-align: right;
}
Centered post counts
#PostAreas td.post_counts_column
{
text-align: center;
}