39 responses to “Techcredo’s Android Market QR codes WordPress plugin”

  1. Jeronimo

    I replace this code because de function “file_get_contents” is disabled in my webserver:
    original:
    $pagecode = @file_get_contents($url); // grab the code for the entire page
    ==================
    New:
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $pagecode = curl_exec($ch);
    curl_close($ch);

  2. sager

    please add name of application to alt atribute to generated images.

  3. Vasilj

    It’s working great now. I have one question. Is it possible to make the QR cacheable? I tried to make the page with 20 or so apps, but the page is loading for very long time in that condition. I’m using w3tc and cloudflare for caching and I think it could be very useful to have the option to make the QR cacheable.

    Again, thanks for such a great plugin

  4. ics

    Hey!

    I modified the code to have 100×100 image and 100×100 qr codeȘ

    …. cht=qr&chs=100×100&chld=L|1&chl=’.$qrURL.’” style=”float:right;” border:’.$qrcborderc.’” title=”‘.$qrctitle.’” />’.$appiconurl.’ width=”100px” height=”100px” ….

    but i have a problem, sometimes, the qr code is smaller than 100×100,

    http://i39.tinypic.com/2ecexie.png

    what can i do to make the qr code 100x 100, and always be 100×100. Thank you!

  5. ics

    Can you add a line with the price? Is possible?

  6. Vasilj

    Actually, I found the solution:

    I’ve copied the if statement as an else if but with play.google.com link ;)

    It works for new links:

    http://pastebin.com/pD3rmuW4

    I don’t know if this is the right direction, but it’s a quick patch

  7. Vasilj

    The android market is now using https://play.google.com/store/apps/ links and the plugin broke. Are you going to support the old links with some rewrite script or we should go and search and replace through the database.

    BTW Thanks for the plugin, it works great :D

Leave a Comment