We built a simple code to display the staff´s users of a web , all works fine excep for the fact that popbox content doesn´t load .
file i located in subdomainroot/destiny/staff-list
We belive that is a problem with de module routing.
Thanks for the help ,
<?php
require_once( JPATH_ADMINISTRATOR . '/components/com_easysocial/includes/foundry.php' );
$ids = array('363', '367', '366', '365','364','371','370','456','461');
?>
<div class="Staff">
<?php foreach ($ids as $id) {
$user = Foundry::user($id);
?>
<img alt="<?php echo $user->getName();?>" src="<?php echo $user->getAvatar();?>" data-popbox="module://easysocial/profile/popbox" data-popbox-position="top-left" data-user-id="<?php echo $user ?>" />
<?php } ?>
</div>
file i located in subdomainroot/destiny/staff-list
We belive that is a problem with de module routing.
Thanks for the help ,