Would it be possible to pull the data from another component and display? For example, I could accomplish what I want by displaying the output of certain com_contact fields like email, phone, etc.
Ie: '~/components/com_easyblog/themes/wireframe/authors/default.php'
<?php if ($this->params->get('show_telephone_headings') AND !empty($item->telephone)) : ?>
<?php echo JText::sprintf('COM_CONTACT_TELEPHONE_NUMBER', $item->telephone); ?>
<?php endif; ?>
I only have 10-15 users and we have no need or desire for any type of social network but I'm trying to make this as easy as possible for them and integrate as much as possible to avoid multiple extensions.
Thanks!