Probably a CSS issue. Link to your site so I can give you some CSS to fix the author name text.
This is CSS from your theme that is causing the issue.
.x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-name,
.x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-role,
.x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-ip {
display: block;
font-size: 9px;
letter-spacing: 1px;
text-transform: uppercase;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
Using this Custom CSS could fix your issue. Place the custom CSS where you can put CSS code snippets like a custom CSS plugin, some option in your theme, etc. Add !important
if it still does not work.
.x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-name,
.x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-role,
.x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-ip {
overflow: visible;
text-overflow: inherit;
white-space: inherit;
}