Title: tweet indicator
Last modified: August 22, 2016

---

# tweet indicator

 *  Resolved [kbridges428](https://wordpress.org/support/users/kbridges428/)
 * (@kbridges428)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/)
 * I was wondering if there was a way to have an indicator underneath, like how 
   image sliders do ([http://wowslider.com/?gclid=CI6N_8mE8cMCFWkS7AodllMAgw](http://wowslider.com/?gclid=CI6N_8mE8cMCFWkS7AodllMAgw))
 * [https://wordpress.org/plugins/rotatingtweets/](https://wordpress.org/plugins/rotatingtweets/)

Viewing 12 replies - 1 through 12 (of 12 total)

 *  Plugin Author [Martin Tod](https://wordpress.org/support/users/mpntod/)
 * (@mpntod)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814588)
 * I tried this out in the past and will see if I can reactivate it.
 *  Plugin Author [Martin Tod](https://wordpress.org/support/users/mpntod/)
 * (@mpntod)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814597)
 * I’ve got this working in [the development version](https://downloads.wordpress.org/plugin/rotatingtweets.zip)
   if you use version 2 of the JavaScript on the settings page.
 * You can only do it with a shortcode and need something like:
 *     ```
       [rotatingtweets screen_name='mpntod' show_meta_pager=1]
       ```
   
 * If you want to customise the blob, the default is `show_meta_pager_blob='<span
   >&bull;</span>'` but you can change it to something else.
 * To change the colour of the basic blob, you will need some CSS along the lines
   of:
 *     ```
       .rtw_pager span {
       	color: inherit;
       }
       ```
   
 * The CSS to change the color of the highlighted blob is along the lines of:
 *     ```
       .rtw_pager .cycle-pager-active {
       	color: #DDD;
       }
       ```
   
 *  Thread Starter [kbridges428](https://wordpress.org/support/users/kbridges428/)
 * (@kbridges428)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814619)
 * When I change the JavaScript to version 2, it stops sliding and changing tweets
 *  Plugin Author [Martin Tod](https://wordpress.org/support/users/mpntod/)
 * (@mpntod)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814633)
 * Sounds like something else might be happening with your set-up – since nothing
   has changed with version 2 of the script.
 * What’s your theme and what other plug-ins do you have? Does something appear 
   in the console saying what the problem might be?
 * Martin
 *  Thread Starter [kbridges428](https://wordpress.org/support/users/kbridges428/)
 * (@kbridges428)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814634)
 * Heres the URL:
    [http://lisanickerson.com](http://lisanickerson.com)
 * I am using the theme Florence, and have 9 other plugins: BackupBuddy, TinyMCE
   widget, Contact Form 7, Cyclone Slider 2, Instagram Slider Edit, Menu Social 
   Icons, Page Builder, Pinterest RSS Widget, and WP Popup Plugin
 * There are no said problems, I will keep it on version 2 for the next few hours.
 * Thanks!
 *  Plugin Author [Martin Tod](https://wordpress.org/support/users/mpntod/)
 * (@mpntod)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814640)
 * It seems to be rotating just fine on version 2 currently.
 * Is it only if you add `show_meta_pager=1` to the shortcode that things break?
 *  Thread Starter [kbridges428](https://wordpress.org/support/users/kbridges428/)
 * (@kbridges428)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814652)
 * I cleaned up my plugins and version 2 works, but the show_meta_pager=1 is not
   adding anything
 *  Plugin Author [Martin Tod](https://wordpress.org/support/users/mpntod/)
 * (@mpntod)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814665)
 * I appear not to have uploaded the latest version! I will try to do that in the
   next couple of hours…
 *  Plugin Author [Martin Tod](https://wordpress.org/support/users/mpntod/)
 * (@mpntod)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814667)
 * I had uploaded it, but it wasn’t showing earlier.
 * The latest version is at [https://downloads.wordpress.org/plugin/rotatingtweets.zip](https://downloads.wordpress.org/plugin/rotatingtweets.zip)–
   please let me know if it doesn’t work for you.
 * Martin
 *  Thread Starter [kbridges428](https://wordpress.org/support/users/kbridges428/)
 * (@kbridges428)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814671)
 * hmm okay i uploaded that new version but it still isn’t working… do you see anything
   wrong with this code?
 * `[rotatingtweets screen_name="LisaNickerson" exclude_replies ='1' tweet_count
   ='7' timeout='8000' rotation_type='scrollLeft' show_meta_pager=1 show_meta_pager_blob
   ='<span>&bull;</span>' show_meta_timestamp = '0' show_meta_via = '0' show_meta_screen_name
   = '0']`
 *  Plugin Author [Martin Tod](https://wordpress.org/support/users/mpntod/)
 * (@mpntod)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814672)
 * Shortcodes sometimes have problems if there are spaces in them…
 * Try:
 *     ```
       [rotatingtweets screen_name="LisaNickerson" exclude_replies='1' tweet_count='7' timeout='8000' rotation_type='scrollLeft' show_meta_pager=1 show_meta_pager_blob='<span>&bull;</span>' show_meta_timestamp='0' show_meta_via = '0' show_meta_screen_name = '0']
       ```
   
 * Martin
 *  Plugin Author [Martin Tod](https://wordpress.org/support/users/mpntod/)
 * (@mpntod)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814696)
 * This now works with version 1 and version 2 of the JavaScript in [the development version](https://downloads.wordpress.org/plugin/rotatingtweets.zip).
 * For the shortcode, try
 *     ```
       [rotatingtweets screen_name="LisaNickerson" exclude_replies=1 tweet_count=7 timeout=8000 rotation_type='scrollLeft' show_meta_pager=1 show_meta_timestamp=0 show_meta_via=0 show_meta_screen_name=0]
       ```
   

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘tweet indicator’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/rotatingtweets.svg)
 * [Rotating Tweets (Twitter widget and shortcode)](https://wordpress.org/plugins/rotatingtweets/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/rotatingtweets/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/rotatingtweets/)
 * [Active Topics](https://wordpress.org/support/plugin/rotatingtweets/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/rotatingtweets/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/rotatingtweets/reviews/)

 * 12 replies
 * 2 participants
 * Last reply from: [Martin Tod](https://wordpress.org/support/users/mpntod/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/tweet-indicator/#post-5814696)
 * Status: resolved