=== Rotating Tweets (Twitter widget and shortcode) === Contributors: mpntod Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9XCNM4QSVHYT8 Tags: shortcode,widget,twitter,rotating,rotate,rotator,tweet,tweets,animation,jquery,jquery cycle,cycle,multilingual,responsive,page builder,do not track,dnt Requires at least: 3.2 Tested up to: 4.7 Stable tag: 1.9 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Twitter widget and shortcode to show your latest tweets one at a time an animated rotation == Description == * **Replaces a [shortcode](http://codex.wordpress.org/Shortcode) such as `[rotatingtweets screen_name='your_twitter']`, or a [widget](http://codex.wordpress.org/WordPress_Widgets), with a rotating display of your most recent tweets** * **Supports v 1.1 of the Twitter API** ([i.e. it works](https://blog.twitter.com/2013/api-v1-is-retired)) * **Supports the [new longer tweet format](https://dev.twitter.com/overview/api/upcoming-changes-to-tweets)** * **Space efficient** - instead of showing all your tweets at once, shows one at a time and then smoothly replaces it with the next one. After showing all your tweets, loops back to the beginning again. * **Reliable** - keeps showing your latest Tweets even if the Twitter website is down. * **Customizable** - you decide whose tweets to show, how many to show, whether to include retweets and replies, and whether to show a follow button. You can also decide how quickly the tweets rotate and what type of animation to use. * **Responsive** - resizes as your page resizes * Gives you the option to show a fully customizable Twitter 'follow' button * Replaces [t.co](http://t.co) links with the original link * Caches the most recent data from Twitter to avoid problems with rate limiting * Uses [jQuery](http://jquery.com/), [jQuery.Cycle](http://jquery.malsup.com/cycle/) and [jQuery.Cycle2](http://jquery.malsup.com/cycle2/) to produce a nice smooth result. * Compatible with [W3 Total Cache](/plugins/w3-total-cache/). * Supports Do Not Track (DNT) * **Multi-lingual** - now set up to be multi-lingual. The Twitter 'follow' button is automatically translated to match your site's language setting [if Twitter has made the appropriate language available](https://dev.twitter.com/docs/api/1.1/get/help/languages). Also uses [Wordpress's multi-lingual capability](http://codex.wordpress.org/I18n_for_WordPress_Developers) to enable translation of all the other text used by the plug-in via [language packs](https://translate.wordpress.org/projects/wp-plugins/rotatingtweets). If you'd like to see what the plug-in looks like in action, you can [see the plug-in working here](http://www.martintod.org.uk/2012/05/29/new-twitter-plugin-to-show-tweets-in-rotation/). == Installation == = Installation = 1. Upload the contents of `rotatingtweets.zip` to the `/wp-content/plugins/` directory or use the Wordpress installer 1. Activate the plugin through the 'Plugins' menu in WordPress 1. Go to the [My applications page](https://dev.twitter.com/apps) on the Twitter website to set up your website as a new Twitter 'application'. You may need to log-in using your Twitter user name and password. 1. If you don't already have a suitable 'application' to use for your website, set one up on the [Create an Application page](https://dev.twitter.com/apps/new). It's normally best to use the name, description and website URL of the website where you plan to use Rotating Tweets. You don't need a Callback URL. 1. After clicking **Create your Twitter application**, on the following page, click on **Create my access token**. 1. Copy the **Consumer key**, **Consumer secret**, **Access token** and **Access token secret** from your Twitter application page into the Rotating Tweets settings page. Hit save. If there is a problem, you will see an error message. 1. Place a shortcode such `[rotatingtweets screen_name='mpntod']` in your post or page, or use a widget = Set-up = Options include: 1. Going to the Widgets menu on the admin page and adding the Rotating Tweets widget. Options include the name of the Twitter account to show, whether to show retweets and the speed of rotation. 1. Using the basic Rotating Tweets shortcode, for example `[rotatingtweets screen_name='mpntod']` 1. Using a more complicated Rotating Tweets shortcode, for example `[rotatingtweets screen_name='mpntod' include_rts='1' tweet_count='7' timeout='3000']` = Shortcode variables = Possible variables for the shortcode include: * **Required settings** - at least one of the following three settings is required for the short-code to function: * `screen_name` = one or more Twitter user names e.g. `[rotatingtweets screen_name="mpntod"]` or `[rotatingtweets screen_name="mpntod twitter"]` * `url` = Twitter user URL. If `screen_name` is empty and this link is valid, `screen_name` will be set to the user name included in `url` * `search` = a term to search for. There's a useful guide to using Twitter's search function at https://support.twitter.com/articles/71577-using-advanced-search * **Twitter options** * `include_rts` = `'0'` or `'1'` - include retweets - default is `'0'` * `only_rts` = `'0'` or `'1'` - only include retweets - default is `'0'` * `exclude_replies` = `'0'` or `'1'` - exclude replies - default is `'0'` * `tweet_count` = number of tweets to show - default is `5` * `get_favorites` = `'0'` or `'1'` - show someone's favorites rather than their timeline - default is `'0'` * `list` = `'list-slug'` - the 'slug' used by someone's list (something like `my-list`) * `offset` = ''number'' - default is `'0'` - enables you to start on a later tweet - `'1'` starts on the 2nd tweet, `'2'` starts on the 3rd tweet, etc. * **Display options** * `official_format` = `'1'`, `'2'` or `'custom'` - show one of the two official formats or a custom format if you have written your own `rotatingtweets_display_override()` function - default is `'0'` * `rtw_display_order`=`'info,main,media,meta'` - change the order that the main elements of the tweet are shown - `info`, `main`, `media` and `meta` - via a string using the four keywords separated by commas - default is `'info,main,media,meta'` * `timeout` = time that each tweet is shown in milliseconds - default is `'4000'` (i.e. 4 seconds). `timeout=0` allows for continuous scrolling. * `speed` = time it takes to change from one tweet to the next in milliseconds - default is `'1000'` (i.e. 1 second) * `links_in_new_window` = `'0'` or `'1'` - show links in a new tab or window - default is `'0'` * `rotation_type` = If you are using version 1 of the JavaScript, you can use any of the options listed on the [jQuery.cycle website](http://jquery.malsup.com/cycle/browser.html) - default is `'scrollUp'.` If you are using version 2 of the JavaScript, then the options are `'scrollUp'`,`'scrollDown'`,`'scrollHorz'`,`'scrollLeft'`,`'scrollRight'`,`'toss'`,`'scrollVert'`,`'fade'` and `'carousel'` * `carousel_horizontal` = `0` or `1` - if you've chosen 'carousel' as a rotation type, allow horizontal scrolling - default is `0` * `carousel_count` = ''number'' - if you've chosen 'carousel' as a rotation type, set the number of slides to appear in the carousel - default is 3 for vertical carousel and enough to fill the width of the page for horizontal carousel * `carousel_responsive` = `0` or `1` - if you've chosen a 'horizontal carousel' as a rotation type, makes the carousel responsive to the size of the page - default is `0` * `url_length` = sets the length that the URL of links should be trimmed to... - optional * `show_tco_link` = `'0'` or `'1'` allows you to show Twitter's t.co link instead of the original link - optional * `show_meta_timestamp` = `'0'` or `'1'` - show the time and date of each tweet - default is `'1'` * `show_meta_screen_name` = `'0'` or `'1'` - show who posted each tweet - default is `'1'` * `show_meta_via` = `'0'` or `'1'` - show how each tweet was posted - default is `'1'` * `show_meta_reply_retweet_favorite` = `'0'` or `'1'` - show 'reply', 'retweet' and 'favorite' buttons - default is `'0'` * `no_rotate` = `'0'` or `'1'` - switch off rotation - default is `'0'` * `show_meta_prev_next` = `'0'` or `'1'` - show 'next', 'prev' links - default is `'0'` * `prev` = content for the prev button (default `'prev'`) * `next` = content for the next button (default `'next'`) * `middot` = content for the space between the buttons (default `' · '`) * `np_pos` = position for 'next' and 'prev' buttons - `'top'`, `'bottom'`, `'insidebottom'`, `'beforeafter'` or `'tweets'` (default `'top'`) * `show_meta_pager` = `'0'` or `'1'` - show pager blobs below the tweets - default is `'0'` * `show_meta_pager_blob` = content for your pager blob - default is `''` * `show_media` = `'0'` or `'1'` - experimental option that shows images with the tweet - default is `'0'` * `screen_name_plural` = `'0'` or `'1'` - experimental option that allows you to have a plural possessive in the default display format (e.g. *British Lions' Twitter*) - default is `'0'` * `tweet_length` = maximum number of characters to show in tweet - default is `'0'` which allows whole tweet to be shown * `no_emoji` = `'0'` or `'1'` - experimental option that removes emoji from the feed - default is `'0'` * `official_format_override` = `'0'` or `'1'` - enables you to change the settings for `show_meta_reply_retweet_favorite` and `show_meta_timestamp` on the 'official formats'. * `profile_image_size` = `'normal'`, `'bigger'`, `'mini'` or `'original'` - lets you change the size of profile images - default is `'normal'` * `shuffle` = `'0'` or `'1'` - shuffle the order that Tweets display - default is `'0'` * `merge_cache` = `'0'` or `'1'` - switches caching of searches on or off - default is `'1'` (i.e. on) * **Caching** * `w3tc_render_to` = 'your_choice_of_random_string' - used to support 'fragment caching' by [W3 Total Cache](https://wordpress.org/plugins/w3-total-cache/). For this to work, you also need to ensure that `W3TC_DYNAMIC_SECURITY` is defined in your `wp-config.php` file and that you are not using 'HTTP Compression' on the W3 Total Cache 'Browser Cache' settings page or 'Enhanced Disk caching' on the W3 Total Cache 'Page Cache' settings page. * **Twitter follow button** * `show_follow` = `'0'` or `'1'` - show follow button - default is `'0'` * `no_show_count` = `'0'` or `'1'` - remove the follower count from the Twitter follow button - default is `'0'` * `no_show_screen_name` = `'0'` or `'1'` - remove the screen name from the Twitter follow button - default is `'0'` * `large_follow_button` = `'0'` or `'1'` - show a large Twitter follow button - default is `'0'` == Credits == Most of this is my own work, but special thanks are owed to: * The [jQuery](http://jquery.com/) team * [Mike Alsup](http://jquery.malsup.com/cycle/) for [jQuery.Cycle](http://jquery.malsup.com/cycle/) and [jQuery.Cycle2](http://jquery.malsup.com/cycle2/) * [Syd Lawrence](http://sydlawrence.com/) for introducing me to jQuery and jQuery.Cycle * [Abraham Williams](http://abrah.am) for [TwitterOAuth](https://github.com/abraham/twitteroauth) * [Liam Gaddy](http://profiles.wordpress.org/lgladdy/) at [Storm Consultancy](http://www.stormconsultancy.co.uk/) for [his work](http://www.stormconsultancy.co.uk/blog/development/tools-plugins/oauth-twitter-feed-for-developers-library-and-wordpress-plugin/) on [oAuth Twitter Feed for Developers](/plugins/oauth-twitter-feed-for-developers/) (although I ended up using it for inspiration rather than plugging it in directly). * All the people who have given advice and suggested improvements Thank you to the people who did the original translation work for the following packs: * Wilmerson Felipe for his work on Brazilian Portuguese * Nils Kroneberg for his work on German * Alberto Lario for his work on Spanish * [Mattia Migliorini](https://profiles.wordpress.org/deshack/) at [deshack](http://deshack.net/) for his work on Italian * Natasja Weijer for her work on Dutch * [Alexandre Trudel](http://wordpress.org/support/profile/alexandretrudel) for his help on French * Borisa Djuraskovic at [Web Hosting Hub](http://www.webhostinghub.com/) for his help on Serbian == Frequently Asked Questions == = What options can I use for the shortcode? = All the options are listed on the [Rotating Tweets installation page](/plugins/rotatingtweets/installation/). = How can I include Rotating Tweets in my template? = Try something like: `` A common mistake with `do_shortcode` shortcodes is to use single-quotes or double-quotes all the way through without 'escaping' them. This will normally break your site! It's best to use double-quotes to enclose the shortcode string and single-quotes inside the shortcode string (or vice-versa!). = How can I pull information from two accounts into one widget = The easiest way is to list more than one account in the 'Twitter name' box in the widget or use something like `screen_name='account1 account2'` in the shortcode. = How often does the plug-in call Twitter = In most cases, each use (or "instance") of this plug-in gets data from Twitter every 2 minutes. The exception is when two or more instances share the same settings (screen name etc.), in which case they share the same data rather than each calling it separately. = My Rotating Tweets are not updating. What can I do? = This normally happens if there is an SSL problem. Try going to the settings page and switching off SSL validation. If this doesn't solve the problem, check your Twitter API key settings. If neither of these approaches work, Rotating Tweets will normally be reporting the error as a comment in the HTML of your page. This should give you an idea of how to solve the problem. = The Rotating Tweets are not rotating. What can I do? = This normally happens if there is more than one copy of `jQuery` installed on a page - or more than one copy of `jQuery.cycle`. To see if this is the case, search the HTML on your website to see if either script is called more than once. To do this: 1. Open the page. 1. Right click and select 'View Page Source' or 'View Source' 1. Hit `[CTRL]+F` and search for `jquery` 1. Look out for lines that contain `jquery.min.js` or `jquery.cycle.all.min.js`. Neither script should appear more than once. The problem is that the second (or third) copy of the script overwrites all previous versions and the scripts that go with them. This is particularly likely to happen with old templates or plug-ins. If this is the case: 1. Check is that you have upgraded your template or your plug-in to the latest version. 1. If this still doesn't work, please let me know which plug-in or template is causing the problem and I'll see if I can build a fix into the next version of Rotating Tweets. If there is only one copy of `jquery` and of `jquery.cycle` on your page, the best way to look for the problem is to open the 'console'. To do this: 1. Press `[F12]` (in Chrome or IE) or `[CTRL]+[SHIFT]+K` (in Firefox) 1. Load the page where you have a problem 1. In Chrome or IE, select the tab marked 'console'. 1. Read the diagnostics and look for any problems that relate to JavaScript. This will normally tell you which JavaScript (if any) is having problems. = What can I do if I get the WordPress error code: `http_request_failed - name lookup timed out`? = Try installing the [Core Control plug-in](/plugins/core-control/) and disabling cURL. You can read more about the problem via [this support page](http://wordpress.org/support/topic/wp-351-wordpress-error-code-http_request_failed-name-lookup-timed-out). Thank you to [darkiko](http://wordpress.org/support/profile/darkiko) for sharing their solution to this problem. = My widget is too wide! = Try putting: ` div.widget_rotatingtweets_widget, div.rotatingtweet, div.widget_rotatingtweets_widget div.widget-title { max-width: 123px; } ` into your CSS - changing `123px;` to the width you're aiming at - either via putting `rotatingtweets.css` into `wp-content/uploads` or by editing your own template files. = How can I add a Twitter bird to the left of my tweets? = You can do this by going to the `rotatingtweets/css` directory and renaming `rotatingtweets-sample.css` to `rotatingtweets.css` and putting it in the `wp-content/uploads/` directory. This displays a Twitter bird to the left of your tweets. Any CSS you put into `rotatingtweets.css` won't be overwritten when the plug-in is upgraded to the latest version. == Upgrade notice == = 1.9 = * Supports the [new longer Tweet format](https://dev.twitter.com/overview/api/upcoming-changes-to-tweets) == Changelog == = 1.9 = * Supports the [new longer Tweet format](https://dev.twitter.com/overview/api/upcoming-changes-to-tweets) = 1.8.7 = * Switches off Twitter JavaScript if 'Do Not Track' is enabled. * Fix minor bug with Selective Refresh. = 1.8.6 = * Fixing minor bug in German translation. * Removing "Undefined variable" notice on line 165 = 1.8.5 = * Add shortcode for a large Twitter 'follow' button * Support for PHP7 * Support for 'Selective Refresh' * Ensuring `show_media` display links respects `links_in_new_window` variable. = 1.8.4 = * Updated JavaScript for plug-ins and themes with their own [JQuery Cycle2](http://jquery.malsup.com/cycle2/) installations = 1.8.3 = * Fixed 'Invalid argument' bug when combining tweets from different accounts * Allow up to 60 tweets * Deletion of Italian `.mo` file - since now available as a [Wordpress-hosted translation pack](https://translate.wordpress.org/projects/wp-plugins/rotatingtweets) = 1.8.2 = * Fixed 'Undefined variable' bug in line 648 = 1.8.1 = * Fixed "no updating" caching bug = 1.8 = * Better handling of multiple screen names in a single widget or shortcode * Addition of new option to hide CSS * Updated Twitter JavaScript * Translated the base readme file into US English * Handled bug with `UTF8MB4` text encoding * Tidier date management code with better error handling * Made links in the `readme.txt` language independent = 1.7.18 = * Reinstalling translation packs. Turns out that incomplete packs aren't loaded - which breaks some of the available translations. = 1.7.17 = * Move to [Wordpress-hosted translation packs](https://translate.wordpress.org/projects/wp-plugins/rotatingtweets). = 1.7.16 = * Fixed undefined variable error for `show_media` in `WP_DEBUG` mode * Fix for caching bug = 1.7.15 = * Fixing bug on displaying meta content * Enabling sorting of display elements via `rtw_display_order` shortcode = 1.7.14 = * Works with [Page Builder by SiteOrigin](/plugins/siteorigin-panels/). * Adds new shortcode variable `only_rts` = 1.7.13 = * Adds `profile_image_size`, `shuffle` and `merge_cache` shortcode variables * Lowers chance of clashes with other installations of cycle2 - by defaulting `autoSelector` to `.rotatingtweets` instead of `.cycle-slideshow` * Handles old versions of jQuery that don't fully support `.data()` better * Fixes bug with merge functionality * Fixes bug with admin page JavaScript (thanks to this [very helpful article on StackExchange.com](http://wordpress.stackexchange.com/questions/130084/executing-javascript-when-a-widget-is-added-in-the-backend)) = 1.7.12 = * Updated version 2 of JavaScript - updated jQuery.cycle2 and removal of bug * Fixing height bug * Fixing Carousel defaults * Updating `.pot` file = 1.7.11 = * Completion of Spanish translation - many thanks to Alberto Lario for his help on this * Fixing tweet height JavaScript bug * CSS tidying for TwentyFifteen template * Experimental function combining historical and current tweets = 1.7.10 = * Move to using HTML5 custom data attributes and `data()` functions to transfer variable values to version 1 of JavaScript - including 'speed' variable * Addition of 'pager' via `show_meta_pager` and `show_meta_pager_blob` variables * Addition of `rtw_hashtag_link` class to hashtag links * `timeout=0` now allows continuous scrolling * Updating object code for the widget = 1.7.9 = * Fixing Tweet timezone display problem * Restoring Tweet time display by default for 'Official Twitter Guidelines (wide)' * Extra CSS added to enable people to hide links (should they want to) * Option to switch off JavaScript (for advanced users only) = 1.7.8 = * Solves bug when Base64 tries to decode an array = 1.7.7 = * Better handling transients on transition from old version to new = 1.7.6 = * Addition of Italian language * Fixes transient-based caching - many thanks to to [jensnilsson](https://wordpress.org/support/profile/jensnilsson) and [Moondrop](https://wordpress.org/support/profile/moondrop) for highlighting the solution [here](https://wordpress.org/support/topic/no-tweets-available-mostly?replies=30). = 1.7.5 = * Much faster and more reliable caching. * Compatibility with W3 Total Cache. * New `scrollLeftGap` transition * Ability to put 'prev' and 'next' buttons before and after the main rotating tweets = 1.7.4 = * Ensures all images use `https://` link for compatibility with SSL-secured sites = 1.7.3 = * Adds `show_tco_link` shortcode variable to allow people to show t.co.links. * Support for Newswire template * Restores the caching of Tweet co-ordinates = 1.7.2 = * Switches off JavaScript expansion of 'expand' to 'reply retweet favorite' for carousel rotation. * Adds new `insidebottom` option for `np_pos` shortcode variable = 1.7.1 = * Improved CSS support for horizontal carousel scrolling = 1.7.0 = * Adding `offset`, `speed`, `tweet_length`, `no_emoji` and `show_media` options to the shortcode * Solves clash with [Cyclone Slider 2](/plugins/cyclone-slider-2/) * Adds script version details to the JavaScript * Removal of excess spaces from `middot` shortcode option * Adds option for 'custom' display layout with user-defined display function `rotatingtweets_display_override()` = 1.6.11 = * Fixing cache bug with 'user_mentions' = 1.6.10 = * New code to shrink size of cache by about 70% = 1.6.9 = * Bug fix. = 1.6.8 = * Shrinking cache size to reduce memory problems. * Improved diagnostics. * Clarified instructions. = 1.6.7 = * Fix next/prev buttons for v. 2 of Javascript. * Add next/prev `np_pos='tweets'` option to documentation. * Fix bug on admin page when `WP_DEBUG` is set. = 1.6.6 = * Corrected the 16x16 icon to the latest Twitter logo. = 1.6.5 = * Language update including new Serbian translation. Solved an unusual styling problem. = 1.6.4 = * Bug fix when user name not recognized. = 1.6.3 = * Add option to shorten default link length to 20 characters * Language update including new German translation from Nils Kroneberg * Updated Brazilian Portuguese translation from Wilmerson Felipe = 1.6.2 = * Fixing bug for PHP installations that don't support the 'u' modifier * Renaming v2 JavaScript to avoid clash with other plug-ins. * Extra diagnostics put in to solve regular expression problem = 1.6.1 = * Move to a more unique class name to avoid clashes with another template. = 1.6.0 = * New support for reading from multiple accounts * Improved clean-up on uninstallation or deactivation * Addition of settings page option for timeout of connection to Twitter * Addition of settings page option for placement of JavaScript at the bottom of the page * Addition of settings page option for duration of cache * Fixed problem with hashtags and accents * Improved error messages for connection problems * Tidying up settings page text = 1.5.1 = * Enforce rules on replies and retweets even if the Twitter API doesn't * Fixed problem with [Magazino template](/themes/magazino) * Fixed incorrect message on settings page = 1.5.0 = * Added `Carousel` rotation option and beta support for [version 2 of JQuery Cycle](http://jquery.malsup.com/cycle2/) * Added `link_all_text` shortcode tag and functionality * Added richer debug information * Corrected API expiry date * Added missing `alt` tag * Kept CSS permanently in the header to maintain HTML capability * Public facing Dutch translation complete - many thanks to Natasja Weijer for her help on this * Attempt to fix clash with [Avada](http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226) and [Gleam](http://www.elegantthemes.com/gallery/gleam/) themes = 1.4.7 = * HTML5 compliance * Improved rate-limiting = 1.4.6 = * Addition of Brazilian Portuguese translation * Addition of new display format 6 = 1.4.5 = * Deletes old cache entries if unused for more than 30 days * Fixes a jQuery cycle clash with the [Oxygen theme](/themes/oxygen/). * Added `readme.txt` instructions for dealing with the WordPress error code: `http_request_failed - name lookup timed out`. = 1.4.4 = * Adds an option to switch off verification of SSL connections to Twitter * Adds a short code option (`no_rotate`) to switch off rotation = 1.4.3 = * Removes two lines of CSS causing formatting problems * Improves responsiveness going from narrow to wider layouts = 1.4.2 = * Corrected minor error with resizing of `.rtw_meta` div = 1.4.1 = * Now works with responsive formats * Adjusted width overflow issues * Added [instructions on how to deal with width issues](/plugins/rotatingtweets/faq/) = 1.4.0 = * Support for search, favorites and lists via Rotating Tweets widgets. = 1.3.18 = * Improved and clearer error messages. * Removed search bug. * 'Next' and 'Prev' buttons for shortcodes. = 1.3.17 = * Adds the opportunity to show lists. * Tackles a very odd box height problem that has just appeared in Chrome (but not Firefox or IE). = 1.3.16 = * Making sure hashtags have a space or the start of a line before them. * Tidying up errors found when running plug-in with `wp_debug` set to `true` = 1.3.15 = * Minor correction to hashtag code = 1.3.14 = * Fixes accents in hashtags (hopefully). * Adds beta of search to the shortcode API. * Adds new format of Tweet display. = 1.3.13 = * Strips `@` from screen names to avoid API problems. = 1.3.12 = * Removes accents from screen names (and otherwise cleans them up). * Add test option (currently for shortcodes only) to access favorites. * Solves clash between PECL OAuth library and the Rotating Tweets OAuth library. = 1.3.11 = * Supports cyrillic hashtags! = 1.3.10 = * Fixed hashtag links = 1.3.9 = * Moved to [Semantic Versioning](http://semver.org/) = 0.712 (1.3.8) = * Fixed bug with `console.log` javascript on IE. = 0.711 (1.3.7) = * Fixed up a significant problem with caching. = 0.709 (1.3.6) = * Tidying up error reporting. = 0.707 (1.3.5) = * Fixes major bug resulting from upgrade to handle Twitter API v 1.1 = 0.706 (1.3.4) = * Change to JavaScript to improve width handling for tweets. = 0.703 (1.3.3) = * Minor code tidying to improve debugging and increase speed! = 0.702 (1.3.2) = * Adjustment to javascript and CSS to cope with long links or long words = 0.701 (1.3.1) = * Very minor mistake in rendering code = 0.700 (1.3.0) = * Important upgrade needed for Rotating Tweets to keep working after March 2013. Supports version 1.1 of the Twitter API. = 0.625 (1.2.4) = * Enabled users to make all links open in a new tab or window = 0.623 (1.2.3) = * Fixed a problem where a short name fitted inside a long one - e.g. @rotary and @rotarycrocus = 0.622 (1.2.2) = * Escaped title tags = 0.621 (1.2.1) = * Fixed timezone problem. = 0.620 (1.2.0) = * Added option to show links in a new window * Fix problem with selection of 20 second rotating speed. = 0.613 (1.1.6) = * Fixed instructions in plug-ins list. = 0.612 (1.1.5) = * Fixed error message caused by last fix causing tweets to repeat. = 0.611 (1.1.4) = * Finally ran with debug and removed all the error messages. = 0.610 (1.1.3) = * Starts to add options to allow for different length URLs = 0.602 (1.1.2) = * Fixes bug with Javascript = 0.601 (1.1.1) = * Fixes problem with stylesheet = 0.600 (1.1.0) = *Now includes options consistent with Twitter display options * Tidied up code. = 0.505 (1.0.0) = * Minimized Javascript. * Set-up for I18n. = 0.502 (0.4.1) = * Javascript fix for zero height tweets problem = 0.500 (0.4.0) = * Adds options for how tweet information is displayed and how the tweet rotates. = 0.492 (0.3.1) = * Solves `Cannot use string offset as an array` error on line 232 = 0.491 (0.3.0) = * Lets you customize the Twitter 'follow' button. * Fixes problem with media links. * Sorts problem of overlong links reshaping widgets. = 0.48 (0.2.6) = * More detailed error messages for Wordpress installations unable to access Twitter. * Fixes problem on the zeeBizzCard template and sets up fix for other templates that use their own install of the `jquery-cycle` javascript. = 0.471 (0.2.5) = * Making sure that cache never gets overwritten unless new, valid twitter data has been downloaded. * Dealing with the problem that someone in a long conversation may not get enough valid tweets to show by asking for only 20 tweets from Twitter. = 0.46 (0.2.4) = * Properly handles rate-limiting by Twitter = 0.44 (0.2.3) = * Removes follow button if Twitter has returned an empty value = 0.43 (0.2.2) = * Improved error checking if Twitter has returned an empty value = 0.42 (0.2.1) = * Fixed major bug causing crashes when Twitter goes down = 0.40 (0.2.0) = * Added ability to alter speed of rotation = 0.30 (0.1.8) = * Fixes bug - problem with `get_object_vars()` on line 193 = 0.29 (0.1.7) = * Better handling of retweets. No longer cuts off the end of the text on longer RTs. = 0.28 (0.1.6) = * Properly fixes flaw in how flags are handled. = 0.27 (0.1.5) = * Fixed flaw in how flags are handled. = 0.26 (0.1.4) = * Stops display and caching of non-existent twitter feeds = 0.25 (0.1.3) = * Stops display and caching of faulty twitter feeds = 0.21 (0.1.2) = * Replaced a missing `` in the follow-button code (with thanks to [jacobp](http://wordpress.org/support/profile/jacobp) for spotting it and suggesting a fix) = 0.2 (0.1.1) = * Fixed a problem with caching = 0.1 (0.1.0) = * First published version == Screenshots == 1. This animation shows rotating tweets inserted into a blog-post via a short code. It is slightly faster than the default setting, but gives a sense of what you get. 2. You can add rotating tweets via a Widget: 3. Or by using a shortcode: