• Resolved saemosaemo

    (@saemosaemo)


    Hello Martin!

    I really love your plugin and appreciate all the resolved requests and the quick replies. I read through some of your support resolutions regarding this (for example: http://ww.wp.xz.cn/support/topic/more-than-1-tweet?replies=8) but perhaps I missed something. I am trying to create this carousel look:

    http://phoogoodev.com/southpark/wp-content/themes/phoogoo/lib/img/PhotoshopScreenSnapz004.jpg

    I have managed to have it show 4 up, horizontally, but I have two questions:

    1. This is the shortcode I am using. I turned off rotate because it loads from top to bottom, so I turned it off for debugging. Is there any way to have it ‘carousel/slide’ horizontally to the next tweet from right to left with arrows showing to cycle through them?

    [rotatingtweets screen_name=’dotcapital’ no_rotate=’1′ rotation_type = ‘carousel’ show_meta_reply_retweet_favorite = ‘1’ tweet_count=’4′]

    2. I ran into a stair-stepping problem when placing float:left on .rotatingtweet, see here on the dev site: http://phoogoodev.com/southpark/about/
    I tried to place a clear-fix in the parent div but could’t find the div in rotatingtweets.php.

    Any help or a point in the right direction would be appreciated. Thanks!

    https://ww.wp.xz.cn/plugins/rotatingtweets/

Viewing 15 replies - 31 through 45 (of 57 total)
  • Plugin Author Martin Tod

    (@mpntod)

    Have you updated to the latest ‘official’ version? It should include horizontal scrolling.

    The arrows definitely are showing on my version. Immediately after the horizontally rotating tweets.

    Thread Starter saemosaemo

    (@saemosaemo)

    I have not updated to the official version. I thought we were working on the development version. Is the development version the official version now? Shall I give that a try?

    Plugin Author Martin Tod

    (@mpntod)

    I’ve now played around with the CSS for the development version (this will be a more recent version than the one you have) and it appears to have solved the problem.

    The issue was that white-space: none; was appearing in the CSS – so putting a few white-space: normal; lines in there appears to have fixed things.

    Thread Starter saemosaemo

    (@saemosaemo)

    Hi Martin!

    I see that you got the arrows up on your example. Shall I replace the version I have with the development version you posted? If so, I opened it up and cannot find the white-space: normal that you added in style.css or rotatingtweets-sample.css. Where did you make these fixes?

    Thanks!

    Plugin Author Martin Tod

    (@mpntod)

    Apologies! I hadn’t uploaded it! It should be working if you download it now.

    Thread Starter saemosaemo

    (@saemosaemo)

    Ok! just to clarify, you want me to download the “development version” from the “I’ve now played around with the CSS for the…” post from earlier? Then replace the entire folder as we did before?

    Plugin Author Martin Tod

    (@mpntod)

    Yes. Although, in practice, the only file you really need to change is this one.

    Plugin Author Martin Tod

    (@mpntod)

    I’ve put the changes into the main version – so doing an automatic upgrade should get you the right version.

    Thread Starter saemosaemo

    (@saemosaemo)

    Hi Martin! I didnt have to do the upgrade, just replaced the css styles with the white-space CSS fixes. Do you think I should go ahead and do the auto update?

    I think I might have found why the prev/next buttons were not working. Could it be because the shortcode was placed in a ACF (Advance Custom Fields) wysiwyg field?

    Here is an example of the same code when being pulled from the regular page content area. In the page template: <?php the_content(); ?>

    But when the same short code is placed in the ACF field. In the page template its: <?php the_field(‘twitter_feed’); ?>. The arrow images do not show.

    http://phoogoodev.com/southpark/twitter-feed-test/

    What do you think?

    Thread Starter saemosaemo

    (@saemosaemo)

    First off, I wanted to add how grateful I am to be working with you. Your patience and work ethic is resounding!

    Things are getting closer! Earlier in our thread you mentioned styling by using these methods: http://ww.wp.xz.cn/support/topic/feature-request-custom-official_format?replies=5

    I am not sure I am quite following so I wanted to let you know what the last pieces of this puzzle are.

    1. Is there a way to output div.rtw_timestamp outside of div.rtw_meta? The reason why is that I need the timestamp to be in the top right corner of the tweet div. As in this example: http://phoogoodev.com/southpark/wp-content/themes/phoogoo/lib/img/PhotoshopScreenSnapz004.jpg

    2. I couldn’t find shortcode to remove the meta/retweet/fav icons and replace with text. So replace the icons to “Reply, Retweet, Favorite”

    example: http://phoogoodev.com/southpark/wp-content/themes/phoogoo/lib/img/PhotoshopScreenSnapz004.jpg

    3. Responsive- I have set the tweet_count to ‘4’ and carousel_responsive to ‘1’ and removed any CSS widths but the tweet divs are coming out as various widths. Is there any way to keep these ‘responsive’ to 4 tweet divs wide for all browsers except mobile?

    This example: http://phoogoodev.com/southpark/about/ is showing various widths, is that because of the snippet length?

    We are very close and I am super happy!

    Thank you!

    Plugin Author Martin Tod

    (@mpntod)

    I think you should aim to fix the widths via something like:

    div.rotatingtweet {
       width: 400px;
    }

    The only way to put the time in the top-right is currently to use official_format=2 I think – or to create your own function.

    To this end, you would need to use official_format='custom' and write your own rotatingtweets_display_override() function like the one listed here.

    `

    Thread Starter saemosaemo

    (@saemosaemo)

    Looking great! http://phoogoodev.com/southpark/about/

    Is there any way you can set it to have the metadata showing without have to hover over the “expand” link?

    Plugin Author Martin Tod

    (@mpntod)

    I’ve uploaded a new development version which should fix this!

    Martin

    Thread Starter saemosaemo

    (@saemosaemo)

    Thank you thank you thank you! That did it!

    One last question : ) The div with the arrows .rotatingtweets_nextprev has to have a higher z-index to position itself “on top” of the tweets. Because of this the links in the actual tweets are being “blocked” by the .rotatingtweets_nextprev div. Is there a way to have the arrows appear outside of the .rotatingtweets_nextprev div and just float left and float right respectively? I already wrapped the carousel in div.tweets-div.

    If we can have the arrows show as separate divs we can have them float left and right in the div.tweets-div, right?

    Any thoughts? Thanks!

    Plugin Author Martin Tod

    (@mpntod)

    In theory they’re already directly accessible and you might be able to avoid giving .rotatingtweets_nextprev a high z-index.

    What happens if access them via a.rtw_prev and a.rtw_next or even .rtw_prev and .rtw_next?

    Martin

Viewing 15 replies - 31 through 45 (of 57 total)

The topic ‘Horizontal Carousel’ is closed to new replies.