Author pane

QTChat works with the Author Pane module.

author_pane_qtchat_link_0.png

Chat link

Paste this code in the file author-pane.tpl.php:

<?php /* QTChat */ ?>
<?php if (!empty($qtc_invite_to_chat_link)): ?>
  <div class="author-pane-line qtc_invite_to_chat_link">
    <?php print $qtc_invite_to_chat_link; ?>
  </div>
<?php endif; ?>

The link is not available for a user

  • if that user is offline
  • if he does not have permission to use QTChat

Online status

QTChat allow to use an alternative online status indication.

Paste this code in the file author-pane.tpl.php:

<?php /* QTChat */ ?>
<?php if (!empty($qtc_user_status)): ?>
  <div class="author-pane-line qtc_user_status">
    <?php print $qtc_user_status; ?>
  </div>
<?php endif; ?>