• I tried a lot of handles, but all I want is a simple scrolling to the left. Which should be done with the following I assumed. What am I doing wrong?

    I got it on version 2 now in the settings.

    [rotatingtweets screen_name=”act_value” rotation_type=”scrollLeft”]

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Martin Tod

    (@mpntod)

    For some reason the JavaScript isn’t loaded on the page.

    On the settings page, is Rotating Tweets set to load in the header or the footer?

    Does your template include the wp_head() and/or wp_footer() functions in it?

    Thread Starter timmeah

    (@timmeah)

    thanks for the reply, I appreciate you looking into it.

    It was loaded in the footer, but now i changed it back to default header. (no result)

    If i go to appearance – editor, there’s a “Theme Header” with header.php, and in there is
    <?php wp_head(); ?> in there, so I guess it includes it.

    Plugin Author Martin Tod

    (@mpntod)

    It’s not appearing in the HTML.

    Is wp_footer() in the template somewhere as well?

    How have you put Rotating Tweets onto the page?

    Thread Starter timmeah

    (@timmeah)

    There is also a Theme Footer named footer.php

    <?php
    
    /**
     * The template for displaying the footer
     *
     * Contains footer content and the closing of the #main and #page div elements.
     *
     */
    defined( 'ABSPATH' ) or die( "No fooling around!" );
    
    ?>
    
    <div class="container footer">
        <div class="row">
            <div class="col-sm-6">
              <span class="footer-line visible-xs-block"></span>
              <p>&copy; <?php echo date('Y'); ?> act value B.V.</p>
            </div>
            
            <div class="col-sm-6 text-right">
              
              <ul class="footer-links">
                <li>
                  <a href="https://facebook.com" class="social-facebook"></a>
                  <a href="https://twitter.com" class="social-twitter"></a>
                  <a href="https://linkedin.com" class="social-linkedin"></a>
                </li>
              </ul>
            </div>
        </div>
    </div>
    
    <?php wp_footer(); ?>
    
    </body>
    </html>

    I’ve put rotating tweets onto the page by installing it from the plugins in wordpress (not by FTP). And activating it, and putting the code [rotatingtweets screen_name=”act_value” rotation_type=”scrollLeft”] into the page.

    Plugin Author Martin Tod

    (@mpntod)

    Something odd is happening at the end of the page – since </body> and </html> aren’t on the page either.

    Is the footer.php file being called into the template?

    Plugin Author Martin Tod

    (@mpntod)

    Just had a look at this again and I’m pretty certain that the problem is that footer.php isn’t loading.

    Can you see the get_footer() function (which is the function that loads footer.php) on your index.php page for example?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Carousel not rotating’ is closed to new replies.