开发者 |
stasionok
kubalskiy |
---|---|
更新时间 | 2024年11月14日 18:11 |
捐献地址: | 去捐款 |
PHP版本: | 7.3 及以上 |
WordPress版本: | 6.7.0 |
版权: | GPLv3 |
版权网址: | 版权信息 |
/wp-content/plugins/wp-qrcode-me-v-card
directory, or install the plugin through the WordPress plugins screen directly.That happens if you disable margin around code or set it too small. In this case your QR code reader can`t detect QR code borders.
Different devices and different software may not work with some fields which are set in the code standard. But all of them should work with basic fields as phone, email, url, name and address.
QR code has additional information which help read damaged code. When you place logo you actually make code "damaged". And if you can`t read QR code after logo placed just make logo smaller or/and correction level higher
You can override qr-code thumbnail with following code in your theme functions.php file
add_action( 'after_setup_theme', 'change_qr_code_photo_size' );
function change_qr_code_photo_size() {
// Override the image size
add_image_size( 'qr-code-photo', 600, 600 );
}
Add optional logo on center of QR code image.
Fix missing static content
Fix remove logo image issue Fix permanent url for QR code New permalink behaviour - now create it by request
Fix generate vCard Fix zero margin Fix clear logo in form New add ability to save or open QE code by click
Fix filename on open vCard on click
Fix error on php8.0 (update vendor) Fix some phone encoding issue (only vCard) Add photo field in card Add class field in card
Fix widget error on wp 5.8 Fix photo field Update translate Make photo binary type on vcf download (in that type phones see photo) Add direct link to vcf file in qr-codes list
Fix fields description, change comma to semicolon
Add support for multi TEL, EMAIL and ADR fields Fix minor issues Update translate
Add support for multi URL field Update translate
Add color picker for select foreground and/or background color for qr-code Fix Create permanent
Fix avada theme conflict (color picker) Fix minor issues
Fix undefined color issue
Fix color picker issue Check WP 6.0.1 support
Check WP 6.2.0 support
Check WP 6.3.0 support Allow set vcf file name for download Fix vCard on broken photo Fix missing translate Fix minor issues
Fix medium severity vulnerability
Update select2 version to fix some specific issue
Fix vcf file line ending to fix MS People crash Fix translate issue Fix WS codex issues Improve security
Add new thumb size for qr-code photo Check WP 6.4.1 support
Check WP 6.4.3 support Fix multi-version select2 usage issue
Hotfix translate issue
Just Fix for compatibility with WP 6.7 ```