photos and avatar

We may be supplementing our web service with snail mail service.

I have a good printable format, but how do I get the avatar to show?

Is there a particular link to a file on the disk?

Is it stored in a mysql field?

Thanks!

Peer

Peer L. Plaut Executive Director, Single Booklovers Connecting Bookworms Since 1970
Quote · 13 Mar 2014

users avatar? if so, this is from the avatar module:

 

 include_once (BX_DIRECTORY_PATH_MODULES . 'boonex/avatar/include.php')
 echo BX_AVA_URL_USER_AVATARS . $aProfile['Avatar'] . BX_AVA_EXT; // avatar image
echo BX_AVA_URL_USER_AVATARS . $aProfile['Avatar'] . 'i'. BX_AVA_EXT; // avatar icon

 

and this is an example in actual usage along with screenshot (I am using it on the profile page, created a php block that merges the avatar and description instead of 2 separate blocks):

 

include_once (BX_DIRECTORY_PATH_MODULES . 'boonex/avatar/include.php');
$profileID = getID( $_GET['ID'] );

  $rProfile = mysql_query("SELECT * FROM Profiles WHERE ID = '$profileID'");
while ($row_profile = mysql_fetch_array($rProfile)) {
$Avatar = $row_profile["Avatar"];
$DescriptionMe = $row_profile["DescriptionMe"];
}
?>
<table style="margin-top: 10px; margin-right: 10px; margin-left: 10px; font-size: 16px; font-family: chapparral pro;">
  <tr>
    <td><table width="80" border="0" align="left">
<tr>
<td align="center" valign="top">
<img src="<?php  
  echo BX_AVA_URL_USER_AVATARS . $Avatar . BX_AVA_EXT; // avatar image
 ?>" width="64" height="64"></td>
</tr>
</table><?php echo $DescriptionMe ?></td>
  </tr>
</table>
<?php { }

 

 

avatar description merge.png · 767.7K · 431 views
caredesign.net
Quote · 13 Mar 2014

Professor- I love your site... :) I like mine too.. but.. :) I can always learn from the Professor... LOL

Who did the template? What do you use for mobile platforms?

Thanks for the code.. I think I will work this into my offline service.

Peer

 

Peer L. Plaut Executive Director, Single Booklovers Connecting Bookworms Since 1970
Quote · 26 Mar 2014

The template is just a few css style changes that I made. I have not really gotten to the mobile platform yet, but will be using the default dolphin mobile app (will rebrand shortly) and add whatever I need to add to make it work for us.

caredesign.net
Quote · 26 Mar 2014
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.