Anyone know how to customize particular post author or respondee left-side area around the avatar to include data such as title, custom description, etc, as featured at https://wpforo.com/community/faq/why-some-of-the-users-profile-fields-are-not-visible/#post-103325 (Support Team) and more particularly like https://www.levelset.com/payment-help/question/received-noi-for-lien/ where it spotlights "construction lawyer", "legal guard lawyer", and "attorney at" - below / next to the avatar (yes I recognize they're not using WPFORO). Is there a custom field option built into wpforo?
Thanks ya'll!
you can use the wpForo - User Custom Fields addon to add fields to the profile
if you want these fields displayed in the post
You can edit the post.php of the used layout
and add the custom fields with this code
<?php echo implode( ', ', array_diff((array) wpforo_member($member, 'field_xxxxxxx'), array(0)) ) ?>
replace the "xxxxxxx" with the correct field number
I have included many fields in this way 😉