I have set the display of twitter feeds to 4 but only 2 are shown.

That's the code I put into my block:

<a class="colorbox-load" href="/sites/all/themes/kornferry_theme/twitter-feed.php?width=350&height=450&iframe=true" ><h2 class="block-title"><span>The Korn/Ferry Twitter Feed<span></h2></a>
<?php if (function_exists('twitter_pull_render')) { print twitter_pull_render('@schoki86/kornferry', 'Korn/Ferry', 4); } ?>

Any ideas why it doesn't pull the correct number of tweets?

Comments

criscom’s picture

it looks like it is related to the fact that I try to pull from a list of a user. @schoki/86/kornferry instead of just @schocki86. when I set it to
<?php if (function_exists('twitter_pull_render')) { print twitter_pull_render('@schoki86', 'Korn/Ferry', 4); } ?> it works. if I set it to <?php if (function_exists('twitter_pull_render')) { print twitter_pull_render('@schoki86/kornferry', 'Korn/Ferry', 4); } ?> it doesn't.