Changeset 588914
- Timestamp:
- 08/22/2012 04:00:59 PM (14 years ago)
- File:
-
- 1 edited
-
quick-chat/trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-chat/trunk/readme.txt
r588765 r588914 41 41 * Saves your website bandwidth by sending AJAX requests only when there are new messages 42 42 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 50 For 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/). 45 51 46 52 == Upgrade Notice == … … 99 105 You 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. 100 106 101 [quick-chat height="400" room="default" userlist="1" userlist_position= leftsmilies="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"] 102 108 103 109 Shortcode attributes details: … … 127 133 `<?php 128 134 global $quick_chat; 129 echo $quick_chat->quick_chat(400, 'default', 1, 'left', 0, 0, 1, 1, 1, 1); ?> 135 if(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 ?> 130 139 ` 131 140
Note: See TracChangeset
for help on using the changeset viewer.