A twitter module problem with code? - Joomla! Forum - community, help and support
hi all, i'm using joomforest template , have code twitter module code visible on website , not showing latest tweets should ideas?
code entered custom html module.
code should be:-
thanks
code entered custom html module.
code should be:-
code: select all
<div class="jf-bottom-sep"></div>
new twtr.widget({
version: 2,
type: 'profile',
rpp: 1,
interval: 30000,
width: 220,
height: 300,
theme: {
shell: {
background: 'none',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#777777'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
behavior: 'default'
}
}).render().setuser('set_twitter_user_here').start();thanks
solved problem after while on google!!!!
seemed missing code here if needs it.
seemed missing code here if needs it.
code: select all
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new twtr.widget({
version: 2,
type: 'profile',
rpp: 1,
interval: 6000,
width: 220,
height: 300,
theme: {
shell: {
background: 'transparent',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#777777'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setuser('twitter_name').start();
</script>
Comments
Post a Comment