Use this forum to help each other on the Freebies offered at luiszuno.com.
Nova Tweets
  • Hi there!

    First of all, thank you very much for the Nova-theme. It's really amazing. However, I have a small issue with the Twitter option. I can't seem to get my own tweets to show on my webpage...I've tried changing the username in the js-file, but nothing happens and the "default" tweets are still being shown. Forgive my ignorance on this subject, but I'm new to jquery.
    I really hope you (or anyone else) can help me.

    Thanks!
  • Hi I have the same problem, I have tried to change the username in the .js but nothing happens.

    How can I change that?

    Thanks!
  • Hi guys,

    Well, in the custom.js file, ther's only one thing to change :

    // Tweet Feed ------------------------------------------------------ //

    $("#tweets").tweet({
    query: "from:envato http",

    Instead of "envato", put your tweet account (the name used afer the @ !!).

    By the way, you don't have any idea regarding linking to jquerry tabs ?

    Thanks in advance

    Hermes
  • Hey Hermes i did what you say but now didnt show nothing, just "loading tweets..." after that nothing its weird i need help on this too.
  • lol... ok this is exacly what i did.

    // Tweet Feed ------------------------------------------------------ //

    $("#tweets").tweet({
    query: "from:username",

    again awesome theme Luis!
  • Thanks so much Hermes.. This forum is really useful.
  • I changed the username on the custom.js file but the tweet still not working. Some help?
  • Hi

    I seen recently most people are struggling with the tweet config.


    To make things clear you just need to change the username for example "envato" to your name and leave http. However this will fetch recent tweets no matter the count number.

    If you want you could try the alternative usage which will work best. Just replace the chunk of code of the default for the alternative at the "custom.js"



    --- default usage ----------

    $("#tweets").tweet({
    query: "from:envato http",
    count: 3,
    loading_text: "loading tweets...",
    callback: tweet_cycle
    });


    change to:


    --- Alternative usage -------------

    $("#tweets").tweet({
    count: 3,
    username: "ansimuz",
    callback: tweet_cycle
    });


    Hope it helps.