Update twitter in template
First, please update script in: \muziq\scripts\vendor\twitterFetcher_min.js. Please copy last version of script and paste it in current file from:
https://raw.githubusercontent.com/jasonmayes/Twitter-Post-Fetcher/master/js/twitterFetcher_min.js
Then go to \muziq\scripts\main.js go to Twitter section.
The default code:
function twitterfeed() {
var config5 = {
"id": '702067549920485376',
"domId": 'twitter-feed',
"maxTweets": 4,
"enableLinks": true,
"showUser": true,
"showTime": true,
"dateFunction": '',
"showRetweet": false,
"customCallback": handleTweets,
"showInteraction": false
};
Change it to:
function twitterfeed() {
var config5 = {
"profile": {"screenName": 'type your username here without @'},
"domId": 'twitter-feed',
"maxTweets": 4,
"enableLinks": true,
"showUser": true,
"showTime": true,
"dateFunction": '',
"showRetweet": false,
"customCallback": handleTweets,
"showInteraction": false
}; 
