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

    (@subratamal)

    Hi @gnfb,

    Sorry for delayed response, please use below code snippet to theme function.php file to remove QR code tab from the product page.

    add_filter('woocommerce_product_tabs', 'remove_qr_code_tab', 20);
    function remove_qr_code_tab($tabs){
        if(isset($tabs['test_tab'])){
            unset($tabs['test_tab']);
        }
        if(isset($tabs['qr_code_tab'])){
            unset($tabs['qr_code_tab']);
        }
        return $tabs;
    }

    Thanks and Regards,
    Subrata Mal

Viewing 1 replies (of 1 total)

The topic ‘shortcode’ is closed to new replies.