Active
Project:
Twitter Pull
Version:
7.x-1.0-rc2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Aug 2012 at 17:44 UTC
Updated:
9 Aug 2012 at 17:58 UTC
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
Comment #1
criscomit 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.