• Resolved admyly

    (@admyly)


    Hello

    the QR code is showing in two position i want to keep only below the price

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Subrata Mal

    (@subratamal)

    Hi @admyly,

    Please use below code to active theme function.php file to remove QR code tab from the product page.

    add_filter('woocommerce_product_tabs', 'woocommerce_product_tabs_remove_qr_code', 20);
    function woocommerce_product_tabs_remove_qr_code($tabs){
        if(isset($tabs['qr_code_tab'])){
            unset($tabs['qr_code_tab']);
        }
        return $tabs;
    }
    Thread Starter admyly

    (@admyly)

    Thanks, how do I resize the QR code? it’s too large

    and how do I add QR code in email template?

    thanks

    Plugin Contributor Subrata Mal

    (@subratamal)

    You can change QR code size from plugin settings page WooCommerce > QR Codes. Please note you have to regenerate all QR code after settings change from regeneration tab.

    Cheers!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘The QR Code showing in two position’ is closed to new replies.