• I am displaying a twitter feed on my homepage:

    https://www.fairwaterrights.com

    The feed works fine. But if I click on a link in the twitter post in FIREFOX, it doesn’t open.

    For instance, instead of opening https://bit.ly/lNWyT9 in the browser, it tries to open https://www.fairwaterrights.com/%22http:/bit.ly/lNWyT9%22.

    It works fine in Safari.

    How can I fix this? Thank you for your help.

    Here is the code:

    <?php
    $username = “fairwaterrights”; // Your twitter username.
    $limit = “4”; // Number of tweets to pull in.

    /* These prefixes and suffixes will display before and after the entire block of tweets. */
    $prefix = “”; // Prefix – some text you want displayed before all your tweets.
    $suffix = “”; // Suffix – some text you want displayed after all your tweets.
    $tweetprefix = “@fairwaterrights “; // Tweet Prefix – some text you want displayed before each tweet.
    $tweetsuffix = “

    “; // Tweet Suffix – some text you want displayed after each tweet.

    $feed = “https://search.twitter.com/search.atom?q=from:&#8221; . $username . “&rpp=” . $limit;

    function parse_feed($feed, $prefix, $tweetprefix, $tweetsuffix, $suffix) {

    $feed = str_replace(“<“, “<“, $feed);
    $feed = str_replace(“>”, “>”, $feed);
    $clean = explode(“<content type=\”html\”>”, $feed);

    $amount = count($clean) – 1;

    echo $prefix;

    for ($i = 1; $i <= $amount; $i++) {
    $cleaner = explode(“</content>”, $clean[$i]);
    echo $tweetprefix;
    echo $cleaner[0];
    echo $tweetsuffix;
    }

    echo $suffix;
    }

    $twitterFeed = file_get_contents($feed);
    parse_feed($twitterFeed, $prefix, $tweetprefix, $tweetsuffix, $suffix);
    ?>

  • The topic ‘twitter feed links not working in Firefox’ is closed to new replies.