*

epoolroy

  • ****
  • 121 posts
Help me modified Instant messenger with notification
« on: April 18, 2018, 04:05:15 AM »
Hai, can someone help me to  modified this code...
in header.php i found this code, see below

Code: [Select]
<div class="account<?php if(osc_is_web_user_logged_in()) { ?> has-border<?php ?>">
          <?php if(osc_is_web_user_logged_in()) { ?>
            <a class="alerts tr1" href="<?php echo osc_item_send_friend_url(); ?>">
              <i class="fa fa-bell-o"></i> <?php _e('Notifications''stela'); ?>

what i need its, how can i use the code from instant messenger to replace Notification?
i mean, i want at header had notification from Instant messenger
below its code for instant messenger

Code: [Select]
<?php if(function_exists('im_messages')) { echo im_messages(); } ?>
Thank you.

Marked as best answer by epoolroy on April 19, 2018, 03:48:18 AM
*

MB Themes

Re: Help me modified Instant messenger with notification
« Reply #1 on: April 18, 2018, 12:41:41 PM »
Code: [Select]
          <?php if(function_exists('im_messages') && (osc_is_web_user_logged_in() || osc_get_preference('link_reg_only','plugin-instant_messenger') <> 1)) { ?>
            <a class="message tr1" title="<?php _e('Instant Messages''veronika'); ?>" href="<?php echo osc_route_url'im-threads'); ?>"><i class="fa fa-envelope-o"></i> <span class="counter"><?php echo $message_count?></span></a>
          <?php ?>
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

epoolroy

  • ****
  • 121 posts
Re: Help me modified Instant messenger with notification
« Reply #2 on: April 19, 2018, 03:48:09 AM »
Code: [Select]
          <?php if(function_exists('im_messages') && (osc_is_web_user_logged_in() || osc_get_preference('link_reg_only','plugin-instant_messenger') <> 1)) { ?>
            <a class="message tr1" title="<?php _e('Instant Messages''veronika'); ?>" href="<?php echo osc_route_url'im-threads'); ?>"><i class="fa fa-envelope-o"></i> <span class="counter"><?php echo $message_count?></span></a>
          <?php ?>

Thank you so much.....