• Resolved squarepupil

    (@squarepupil)


    First, thank you for this great plugin. I think it just needs one thing to be perfect for my needs:

    I would like to be able to generate higher resolution QR codes. Sometimes I want to display the QR card that leads to my vcf file in a Powerpoint presentation, for example, and the default resolution of 320×347 (with label) will not look good when the QR code is a meter tall! Could you implement a feature to allow higher (or lower) resolution QR codes to be generated? I think a slider that starts at the default and tops out at 1600×1600 or something would be a good way to do it in the GUI.

    I tried posting about this once but it didn’t seem to appear, so I’m trying again. Sorry if it shows up twice.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author stasionok

    (@stasionok)

    Hi, thank you for using. Please update and try new option)
    Also you can add custom sizes in functions.php

    add_filter(‘wqm_qr_size_presets’, function(array $presets, int $post_id = 0) {

        $presets[] = 300;

        sort($presets);

        return $presets;

    }, 10, 2);

    Thread Starter squarepupil

    (@squarepupil)

    Wow! Thanks so much for your prompt attention to this. The resolution function works great.

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.