Plugin Directory

Changeset 588914


Ignore:
Timestamp:
08/22/2012 04:00:59 PM (14 years ago)
Author:
Marko-M
Message:

Update readme.txt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • quick-chat/trunk/readme.txt

    r588765 r588914  
    4141*   Saves your website bandwidth by sending AJAX requests only when there are new messages
    4242
    43 For more information and demo please visit [Quick Chat demo page](http://www.techytalk.info/wordpress-plugins/quick-chat/) at [TechyTalk.info](http://www.TechyTalk.info/). If you want to display country flags next to your visitor IP address you can install and activate [Quick Flag](http://www.techytalk.info/wordpress-plugins/quick-flag/) WordPress plugin (no additional configuration required).<br>
    44 If you are in search of quality WordPress "who is online" plugin I also recommend visiting my second plugin [Quick Count demo](http://www.techytalk.info/wordpress-plugins/quick-count/) page.
     43<h4>My other WordPress plugins</h4>
     44
     45*   Voting polls plugin [Quick Poll](http://www.techytalk.info/wordpress-plugins/quick-poll/)
     46*   Who is online plugin [Quick Count](http://www.techytalk.info/wordpress-plugins/quick-count/)
     47*   Geolocation plugin [Quick Flag](http://www.techytalk.info/wordpress-plugins/quick-flag/)
     48*   Browser capabilities plugin [Quick Browscap](http://www.techytalk.info/wordpress-plugins/quick-browscap/)
     49
     50For more information and Quick Chat demo please visit [Quick Chat demo](http://www.techytalk.info/wordpress-plugins/quick-chat/) page at [TechyTalk.info](http://www.techytalk.info/).
    4551
    4652== Upgrade Notice ==
     
    99105You can do that by placing [quick-chat] (including [] brackets) inside post or page where you want your chat to appear. This short code will use all default options. If you need to change some of default options you can use shortcode attributes. Here's Quick Chat shortcode with all atributes and their default values included.
    100106
    101 [quick-chat height="400" room="default" userlist="1" userlist_position=left smilies="1" send_button="0" loggedin_visible="1" guests_visible="1" avatars="1" counter="1"]
     107[quick-chat height="400" room="default" userlist="1" userlist_position="left" smilies="1" send_button="0" loggedin_visible="1" guests_visible="1" avatars="1" counter="1"]
    102108
    103109Shortcode attributes details:
     
    127133`<?php
    128134global $quick_chat;
    129 echo $quick_chat->quick_chat(400, 'default', 1, 'left', 0, 0, 1, 1, 1, 1); ?>
     135if(is_object($quick_chat) && method_exists($quick_chat, 'quick_chat')){
     136    echo $quick_chat->quick_chat(400, 'default', 1, 'left', 0, 0, 1, 1, 1, 1); ?>
     137}
     138?>
    130139`
    131140
Note: See TracChangeset for help on using the changeset viewer.