Show author instead of last poster

hey there
I want to show my posts writer instead of the last poster right next to the post.

help me please.

Hi @yekta

I’m afraid this is the design of Air Theme and you can’t change it without writing extra code.

The following code can be used as a reference:

    .full-width .contents .topic-list .topic-list-body .topic-list-item .topic-list-data.posters a:not(.latest) {
        display: unset;
    }
    .full-width .contents .topic-list .topic-list-body .topic-list-item .topic-list-data.posters a:not(:first-child) {
        display: none;
    }
    .full-width .contents .topic-list .topic-list-body .topic-list-item .topic-list-data.posters a:first-child {
        margin-left: 5px;
    }
5 Likes

thanks a lot! works pefectly

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