*

votresiteweb

  • ***
  • 45 posts
How active "Instant Messenger Plugin"in Veronika Theme
« on: May 06, 2017, 11:24:45 PM »
Hi,
How active "Instant Messenger Plugin" in the Veronika Theme, i don't understand this faq ->

To show link to message center and count of unread messages of user, place following link to your theme files:
<?php if(function_exists('im_messages')) { echo im_messages(); } ?>

is it possible to give me the exact place in the theme
 
To show "Send message" button, place following link to your theme files (item.php, search-list.php, ...):
<?php if(function_exists('im_contact_button')) { im_contact_button(); } ?>

I have to place this code on all pages

Thank you for your reply :)

*

votresiteweb

  • ***
  • 45 posts
Re: How active "Instant Messenger Plugin"in Veronika Theme
« Reply #1 on: May 08, 2017, 11:34:45 AM »
Hi,
Someone to a solution
Thank you

Marked as best answer by frosticek on May 09, 2017, 12:16:28 PM
*

Ivanko

  • *****
  • 391 posts
Re: How active "Instant Messenger Plugin"in Veronika Theme
« Reply #2 on: May 08, 2017, 10:26:02 PM »
Hi,
Someone to a solution
Thank you

for example you can add button, after item description, add button in item.php
Code: [Select]
div class="item-desc is_detail">
            <h2><?php _e('Description''veronika'); ?></h2>

            <div class="text">
              <?php echo osc_item_description(); ?>
              <span class="show-desc"><i class="fa fa-ellipsis-h"></i></span>
            </div>
          </div>

<!-- THIS FUNCTION OF YOUR BUTTON -->
<?php if(function_exists('im_contact_button')) { im_contact_button(); } ?>

in same time you can add below this function for testing
Code: [Select]
<?php if(function_exists('im_messages')) { echo im_messages(); } ?>
This will indicate unread messages, but you already should have in header round button, after plugin has been installed.
« Last Edit: May 08, 2017, 10:27:59 PM by Ivanko »

*

votresiteweb

  • ***
  • 45 posts
Re: How active "Instant Messenger Plugin"in Veronika Theme
« Reply #3 on: May 09, 2017, 09:45:03 AM »
hi ivanko, thank you for your support i check that :)
 :D ;) ;) ;) ;D