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?
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.
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?
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>© <?php echo date('Y'); ?> act value B.V.</p>
</div>
<div class="col-sm-6 text-right">
<ul class="footer-links">
<li>
<a href="http://facebook.com" class="social-facebook"></a>
<a href="http://twitter.com" class="social-twitter"></a>
<a href="http://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.
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?
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?