Okay
  Public Ticket #3360823
How to remove the QR Code
Closed

Comments

  • Wade started the conversation

    Hi there,
    I trust you are well.

    I want to disable the QR code on the WooCommerce orders. Reason being is it does not add any value at the moment, and links to a page with broken CSS (Divi).

    Please advise how to disable the QR code option / remove it from WooCommerce tickets?

  •  785
    Zhivko replied

    Hi,

    Open file stachethemes_event_calendar / assets / php / class.helper.php

    and search for following function:

    3267681540.png

    Place "return false;" right below it like this:

    1535591605.png



    Stachethemes Developer

  • Wade replied

    Hi there,
    I trust you are well.

    Thank you. Will this stay persistent through updates?

  • Wade replied

    Also,

    Please advise if the attached is correct?

  • Wade replied

    Also,

    Please advise if the attached is correct?

    Attached files:  Screenshot from 2023-05-02 12-07-48.png

  •  785
    Zhivko replied

    Yes, this is correct.

    I am currently writting a small filter so this function can remain disabled even after update:

    // Disable QR Code image generator
    add_filter('stec_qrcode_disabled', function(){
    return 1;
    });

    This hook can be placed in your theme or child-theme functions.php file.


    Stachethemes Developer